Fri, 22 Dec 2023 13:57:47 +0100
Find In Files
- Added the capability to search & replace strings containing escape codes (like `\n`).
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
1 | <?xml version="1.0" encoding="UTF-8"?> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
2 | <ui version="4.0"> |
8614 | 3 | <class>FindFileWidget</class> |
4 | <widget class="QWidget" name="FindFileWidget"> | |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
5 | <property name="geometry"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
6 | <rect> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
7 | <x>0</x> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
8 | <y>0</y> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
9 | <width>600</width> |
5986
1e78a1aa438b
Some more protobuf related changes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4589
diff
changeset
|
10 | <height>800</height> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
11 | </rect> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
12 | </property> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
13 | <layout class="QVBoxLayout" name="verticalLayout"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
14 | <item> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
15 | <layout class="QGridLayout" name="gridLayout_3"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
16 | <item row="0" column="0"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
17 | <widget class="QLabel" name="TextLabel1"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
18 | <property name="text"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
19 | <string>Find &text:</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
20 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
21 | <property name="buddy"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
22 | <cstring>findtextCombo</cstring> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
23 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
24 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
25 | </item> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
26 | <item row="0" column="1"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
27 | <widget class="QComboBox" name="findtextCombo"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
28 | <property name="sizePolicy"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
29 | <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
30 | <horstretch>0</horstretch> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
31 | <verstretch>0</verstretch> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
32 | </sizepolicy> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
33 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
34 | <property name="toolTip"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
35 | <string>Enter the search text or regular expression</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
36 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
37 | <property name="editable"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
38 | <bool>true</bool> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
39 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
40 | <property name="insertPolicy"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
41 | <enum>QComboBox::InsertAtTop</enum> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
42 | </property> |
9884
5b9453e4c8dd
Adjusted some combo boxes of left sidebar widgets to allow the to shrink below the contents length (see issue489).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9517
diff
changeset
|
43 | <property name="sizeAdjustPolicy"> |
5b9453e4c8dd
Adjusted some combo boxes of left sidebar widgets to allow the to shrink below the contents length (see issue489).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9517
diff
changeset
|
44 | <enum>QComboBox::AdjustToMinimumContentsLengthWithIcon</enum> |
5b9453e4c8dd
Adjusted some combo boxes of left sidebar widgets to allow the to shrink below the contents length (see issue489).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9517
diff
changeset
|
45 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
46 | <property name="duplicatesEnabled"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
47 | <bool>false</bool> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
48 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
49 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
50 | </item> |
8614 | 51 | <item row="0" column="2"> |
52 | <widget class="QToolButton" name="modeToggleButton"> | |
53 | <property name="toolTip"> | |
54 | <string>Press to toggle the mode between find and replace mode</string> | |
55 | </property> | |
56 | </widget> | |
57 | </item> | |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
58 | <item row="1" column="0"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
59 | <widget class="QLabel" name="replaceLabel"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
60 | <property name="text"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
61 | <string>Replace te&xt:</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
62 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
63 | <property name="buddy"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
64 | <cstring>findtextCombo</cstring> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
65 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
66 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
67 | </item> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
68 | <item row="1" column="1"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
69 | <widget class="QComboBox" name="replacetextCombo"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
70 | <property name="sizePolicy"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
71 | <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
72 | <horstretch>0</horstretch> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
73 | <verstretch>0</verstretch> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
74 | </sizepolicy> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
75 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
76 | <property name="toolTip"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
77 | <string>Enter the replacement text or regular expression</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
78 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
79 | <property name="editable"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
80 | <bool>true</bool> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
81 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
82 | <property name="insertPolicy"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
83 | <enum>QComboBox::InsertAtTop</enum> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
84 | </property> |
9884
5b9453e4c8dd
Adjusted some combo boxes of left sidebar widgets to allow the to shrink below the contents length (see issue489).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9517
diff
changeset
|
85 | <property name="sizeAdjustPolicy"> |
5b9453e4c8dd
Adjusted some combo boxes of left sidebar widgets to allow the to shrink below the contents length (see issue489).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9517
diff
changeset
|
86 | <enum>QComboBox::AdjustToMinimumContentsLengthWithIcon</enum> |
5b9453e4c8dd
Adjusted some combo boxes of left sidebar widgets to allow the to shrink below the contents length (see issue489).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9517
diff
changeset
|
87 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
88 | <property name="duplicatesEnabled"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
89 | <bool>false</bool> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
90 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
91 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
92 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
93 | </layout> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
94 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
95 | <item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
96 | <layout class="QHBoxLayout" name="horizontalLayout_2"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
97 | <property name="spacing"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
98 | <number>0</number> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
99 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
100 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
101 | <spacer name="horizontalSpacer_3"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
102 | <property name="orientation"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
103 | <enum>Qt::Horizontal</enum> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
104 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
105 | <property name="sizeHint" stdset="0"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
106 | <size> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
107 | <width>40</width> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
108 | <height>20</height> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
109 | </size> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
110 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
111 | </spacer> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
112 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
113 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
114 | <widget class="QToolButton" name="caseToolButton"> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
115 | <property name="toolTip"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
116 | <string>Select to match case sensitive</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
117 | </property> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
118 | <property name="checkable"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
119 | <bool>true</bool> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
120 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
121 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
122 | </item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
123 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
124 | <widget class="QToolButton" name="wordToolButton"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
125 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
126 | <string>Select to match whole words only</string> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
127 | </property> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
128 | <property name="checkable"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
129 | <bool>true</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
130 | </property> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
131 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
132 | </item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
133 | <item> |
10435
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
134 | <widget class="QToolButton" name="escapeToolButton"> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
135 | <property name="toolTip"> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
136 | <string>Select if the search or replace text contains escape codes</string> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
137 | </property> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
138 | <property name="checkable"> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
139 | <bool>true</bool> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
140 | </property> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
141 | </widget> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
142 | </item> |
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
143 | <item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
144 | <widget class="QToolButton" name="regexpToolButton"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
145 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
146 | <string>Select if the searchtext is a regular expression</string> |
8614 | 147 | </property> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
148 | <property name="checkable"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
149 | <bool>true</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
150 | </property> |
8614 | 151 | </widget> |
152 | </item> | |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
153 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
154 | <spacer name="horizontalSpacer_4"> |
8614 | 155 | <property name="orientation"> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
156 | <enum>Qt::Horizontal</enum> |
8614 | 157 | </property> |
158 | <property name="sizeHint" stdset="0"> | |
159 | <size> | |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
160 | <width>40</width> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
161 | <height>20</height> |
8614 | 162 | </size> |
163 | </property> | |
164 | </spacer> | |
5986
1e78a1aa438b
Some more protobuf related changes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4589
diff
changeset
|
165 | </item> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
166 | </layout> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
167 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
168 | <item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
169 | <widget class="QTabWidget" name="fileOptionsWidget"> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
170 | <property name="sizePolicy"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
171 | <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
172 | <horstretch>0</horstretch> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
173 | <verstretch>1</verstretch> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
174 | </sizepolicy> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
175 | </property> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
176 | <property name="currentIndex"> |
9035
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
177 | <number>0</number> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
178 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
179 | <widget class="QWidget" name="fileTypeTab"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
180 | <attribute name="title"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
181 | <string>File Type</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
182 | </attribute> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
183 | <layout class="QVBoxLayout" name="verticalLayout_3"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
184 | <item> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
185 | <widget class="QListWidget" name="fileTypeList"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
186 | <property name="minimumSize"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
187 | <size> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
188 | <width>0</width> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
189 | <height>125</height> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
190 | </size> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
191 | </property> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
192 | <property name="toolTip"> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
193 | <string>Select the file types to search in</string> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
194 | </property> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
195 | <property name="alternatingRowColors"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
196 | <bool>true</bool> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
197 | </property> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
198 | <property name="selectionMode"> |
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
199 | <enum>QAbstractItemView::NoSelection</enum> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
200 | </property> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
201 | <property name="sortingEnabled"> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
202 | <bool>true</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
203 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
204 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
205 | </item> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
206 | <item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
207 | <widget class="Line" name="line"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
208 | <property name="orientation"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
209 | <enum>Qt::Horizontal</enum> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
210 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
211 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
212 | </item> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
213 | <item> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
214 | <layout class="QHBoxLayout" name="horizontalLayout"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
215 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
216 | <widget class="QCheckBox" name="filterCheckBox"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
217 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
218 | <string>Select to filter the files by a given filename pattern</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
219 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
220 | <property name="text"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
221 | <string>Fi&lter</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
222 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
223 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
224 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
225 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
226 | <widget class="QLineEdit" name="filterEdit"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
227 | <property name="enabled"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
228 | <bool>false</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
229 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
230 | <property name="sizePolicy"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
231 | <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
232 | <horstretch>0</horstretch> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
233 | <verstretch>0</verstretch> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
234 | </sizepolicy> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
235 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
236 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
237 | <string>Enter the filename wildcards separated by ';'</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
238 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
239 | <property name="clearButtonEnabled"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
240 | <bool>true</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
241 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
242 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
243 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
244 | </layout> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
245 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
246 | </layout> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
247 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
248 | <widget class="QWidget" name="findInTab"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
249 | <attribute name="title"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
250 | <string>Find In</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
251 | </attribute> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
252 | <layout class="QVBoxLayout" name="verticalLayout_2"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
253 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
254 | <widget class="QRadioButton" name="projectButton"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
255 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
256 | <string>Search in files of the current project</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
257 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
258 | <property name="text"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
259 | <string>&Project</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
260 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
261 | <property name="checked"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
262 | <bool>true</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
263 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
264 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
265 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
266 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
267 | <widget class="QRadioButton" name="dirButton"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
268 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
269 | <string>Search in files of a directory tree to be entered below</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
270 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
271 | <property name="text"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
272 | <string>&Directory tree</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
273 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
274 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
275 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
276 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
277 | <widget class="EricComboPathPicker" name="dirPicker" native="true"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
278 | <property name="enabled"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
279 | <bool>false</bool> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
280 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
281 | <property name="sizePolicy"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
282 | <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
283 | <horstretch>0</horstretch> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
284 | <verstretch>0</verstretch> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
285 | </sizepolicy> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
286 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
287 | <property name="focusPolicy"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
288 | <enum>Qt::WheelFocus</enum> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
289 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
290 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
291 | <string>Enter the directory to search in</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
292 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
293 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
294 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
295 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
296 | <widget class="QRadioButton" name="openFilesButton"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
297 | <property name="toolTip"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
298 | <string>Search in open files only </string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
299 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
300 | <property name="text"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
301 | <string>&Open files only</string> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
302 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
303 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
304 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
305 | <item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
306 | <spacer name="verticalSpacer"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
307 | <property name="orientation"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
308 | <enum>Qt::Vertical</enum> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
309 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
310 | <property name="sizeHint" stdset="0"> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
311 | <size> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
312 | <width>20</width> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
313 | <height>20</height> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
314 | </size> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
315 | </property> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
316 | </spacer> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
317 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
318 | </layout> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
319 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
320 | </widget> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
321 | </item> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
322 | <item> |
8614 | 323 | <widget class="QCheckBox" name="excludeHiddenCheckBox"> |
324 | <property name="toolTip"> | |
325 | <string>Select to exclude hidden files and directories when searching a directory tree.</string> | |
326 | </property> | |
327 | <property name="text"> | |
10401
a68f6ac72783
Modified some widgets of the left sidebar to allow a narrower size.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9884
diff
changeset
|
328 | <string>Exclude hidden</string> |
8614 | 329 | </property> |
330 | <property name="checked"> | |
331 | <bool>true</bool> | |
332 | </property> | |
333 | </widget> | |
334 | </item> | |
335 | <item> | |
336 | <layout class="QHBoxLayout" name="horizontalLayout_3"> | |
337 | <item> | |
8632
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
338 | <spacer name="horizontalSpacer_2"> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
339 | <property name="orientation"> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
340 | <enum>Qt::Horizontal</enum> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
341 | </property> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
342 | <property name="sizeHint" stdset="0"> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
343 | <size> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
344 | <width>40</width> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
345 | <height>20</height> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
346 | </size> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
347 | </property> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
348 | </spacer> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
349 | </item> |
f25cd4b94eb0
Changed the Find File dialog to an integrated widget (right side)
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8614
diff
changeset
|
350 | <item> |
8614 | 351 | <widget class="QPushButton" name="findButton"> |
352 | <property name="toolTip"> | |
353 | <string>Press to start the search process</string> | |
354 | </property> | |
355 | <property name="text"> | |
8809
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
356 | <string>Search</string> |
8614 | 357 | </property> |
358 | </widget> | |
359 | </item> | |
360 | <item> | |
361 | <widget class="QPushButton" name="stopButton"> | |
362 | <property name="toolTip"> | |
363 | <string>Press to stop the current search process</string> | |
364 | </property> | |
365 | <property name="text"> | |
366 | <string>Stop</string> | |
367 | </property> | |
368 | </widget> | |
369 | </item> | |
370 | <item> | |
371 | <spacer name="horizontalSpacer"> | |
372 | <property name="orientation"> | |
373 | <enum>Qt::Horizontal</enum> | |
374 | </property> | |
375 | <property name="sizeHint" stdset="0"> | |
376 | <size> | |
377 | <width>40</width> | |
378 | <height>20</height> | |
379 | </size> | |
380 | </property> | |
381 | </spacer> | |
382 | </item> | |
383 | </layout> | |
384 | </item> | |
385 | <item> | |
386 | <widget class="Line" name="line_2"> | |
387 | <property name="orientation"> | |
388 | <enum>Qt::Horizontal</enum> | |
389 | </property> | |
390 | </widget> | |
391 | </item> | |
392 | <item> | |
8809
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
393 | <layout class="QHBoxLayout" name="horizontalLayout_4"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
394 | <item> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
395 | <widget class="EricSqueezeLabelPath" name="findProgressLabel"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
396 | <property name="sizePolicy"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
397 | <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
398 | <horstretch>0</horstretch> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
399 | <verstretch>0</verstretch> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
400 | </sizepolicy> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
401 | </property> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
402 | <property name="text"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
403 | <string/> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
404 | </property> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
405 | </widget> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
406 | </item> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
407 | <item> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
408 | <widget class="QPushButton" name="clearButton"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
409 | <property name="toolTip"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
410 | <string>Press to clear the search results</string> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
411 | </property> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
412 | <property name="text"> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
413 | <string>Clear</string> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
414 | </property> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
415 | </widget> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
416 | </item> |
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
417 | </layout> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
418 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
419 | <item> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
420 | <widget class="QProgressBar" name="findProgress"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
421 | <property name="toolTip"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
422 | <string>Shows the progress of the search action</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
423 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
424 | <property name="value"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
425 | <number>0</number> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
426 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
427 | <property name="orientation"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
428 | <enum>Qt::Horizontal</enum> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
429 | </property> |
3071
83d066710d60
Added an extended progress dialog to make the progress bar label more descriptive.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
268
diff
changeset
|
430 | <property name="format"> |
83d066710d60
Added an extended progress dialog to make the progress bar label more descriptive.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
268
diff
changeset
|
431 | <string>%v/%m Files</string> |
83d066710d60
Added an extended progress dialog to make the progress bar label more descriptive.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
268
diff
changeset
|
432 | </property> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
433 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
434 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
435 | <item> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
436 | <widget class="QTreeWidget" name="findList"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
437 | <property name="sizePolicy"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
438 | <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
439 | <horstretch>0</horstretch> |
7992
0d1e35a10a0b
Find File Dialog
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
440 | <verstretch>5</verstretch> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
441 | </sizepolicy> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
442 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
443 | <property name="alternatingRowColors"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
444 | <bool>true</bool> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
445 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
446 | <property name="sortingEnabled"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
447 | <bool>true</bool> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
448 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
449 | <property name="columnCount"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
450 | <number>2</number> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
451 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
452 | <column> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
453 | <property name="text"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
454 | <string>File/Line</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
455 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
456 | </column> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
457 | <column> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
458 | <property name="text"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
459 | <string>Text</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
460 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
461 | </column> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
462 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
463 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
464 | <item> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
465 | <widget class="QPushButton" name="replaceButton"> |
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
466 | <property name="toolTip"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
467 | <string>Press to apply the selected replacements</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
468 | </property> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
469 | <property name="text"> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
470 | <string>Replace</string> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
471 | </property> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
472 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
473 | </item> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
474 | </layout> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
475 | </widget> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
476 | <customwidgets> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
477 | <customwidget> |
8356
68ec9c3d4de5
Renamed the modules and classes of the E5Gui package to have the prefix 'Eric' instead of 'E5'.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8312
diff
changeset
|
478 | <class>EricSqueezeLabelPath</class> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
479 | <extends>QLabel</extends> |
9413
80c06d472826
Changed the eric7 import statements to include the package name (i.e. eric7) in order to not fiddle with sys.path.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9209
diff
changeset
|
480 | <header>eric7/EricWidgets/EricSqueezeLabels.h</header> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
481 | </customwidget> |
4589
b648ccbdbef9
Modified more dialogs to use the path picker widgets.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3656
diff
changeset
|
482 | <customwidget> |
8356
68ec9c3d4de5
Renamed the modules and classes of the E5Gui package to have the prefix 'Eric' instead of 'E5'.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8312
diff
changeset
|
483 | <class>EricComboPathPicker</class> |
4589
b648ccbdbef9
Modified more dialogs to use the path picker widgets.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3656
diff
changeset
|
484 | <extends>QWidget</extends> |
9413
80c06d472826
Changed the eric7 import statements to include the package name (i.e. eric7) in order to not fiddle with sys.path.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9209
diff
changeset
|
485 | <header>eric7/EricWidgets/EricPathPicker.h</header> |
4589
b648ccbdbef9
Modified more dialogs to use the path picker widgets.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3656
diff
changeset
|
486 | <container>1</container> |
b648ccbdbef9
Modified more dialogs to use the path picker widgets.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3656
diff
changeset
|
487 | </customwidget> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
488 | </customwidgets> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
489 | <tabstops> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
490 | <tabstop>findtextCombo</tabstop> |
8614 | 491 | <tabstop>modeToggleButton</tabstop> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
492 | <tabstop>replacetextCombo</tabstop> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
493 | <tabstop>caseToolButton</tabstop> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
494 | <tabstop>wordToolButton</tabstop> |
10435
c712d09cc839
Find In Files
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10401
diff
changeset
|
495 | <tabstop>escapeToolButton</tabstop> |
8846
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
496 | <tabstop>regexpToolButton</tabstop> |
4196ec4c37a5
Some optimizations to the find location and find in file panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8833
diff
changeset
|
497 | <tabstop>fileOptionsWidget</tabstop> |
9517
d73c3a1e432b
Continued refactoring of the project browser related code in order to extract some as plugins later on.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9413
diff
changeset
|
498 | <tabstop>fileTypeList</tabstop> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
499 | <tabstop>filterCheckBox</tabstop> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
500 | <tabstop>filterEdit</tabstop> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
501 | <tabstop>projectButton</tabstop> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
502 | <tabstop>dirButton</tabstop> |
4589
b648ccbdbef9
Modified more dialogs to use the path picker widgets.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3656
diff
changeset
|
503 | <tabstop>dirPicker</tabstop> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
504 | <tabstop>openFilesButton</tabstop> |
7992
0d1e35a10a0b
Find File Dialog
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
505 | <tabstop>excludeHiddenCheckBox</tabstop> |
8614 | 506 | <tabstop>findButton</tabstop> |
507 | <tabstop>stopButton</tabstop> | |
8809
29471a3867ac
Added a 'Clear' button to the 'search in files' and 'search location' panes.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8632
diff
changeset
|
508 | <tabstop>clearButton</tabstop> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
509 | <tabstop>findList</tabstop> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
510 | <tabstop>replaceButton</tabstop> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
511 | </tabstops> |
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
512 | <resources/> |
8907
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
513 | <connections> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
514 | <connection> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
515 | <sender>dirButton</sender> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
516 | <signal>toggled(bool)</signal> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
517 | <receiver>dirPicker</receiver> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
518 | <slot>setEnabled(bool)</slot> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
519 | <hints> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
520 | <hint type="sourcelabel"> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
521 | <x>92</x> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
522 | <y>185</y> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
523 | </hint> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
524 | <hint type="destinationlabel"> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
525 | <x>90</x> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
526 | <y>211</y> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
527 | </hint> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
528 | </hints> |
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
529 | </connection> |
9035
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
530 | <connection> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
531 | <sender>filterCheckBox</sender> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
532 | <signal>toggled(bool)</signal> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
533 | <receiver>filterEdit</receiver> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
534 | <slot>setEnabled(bool)</slot> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
535 | <hints> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
536 | <hint type="sourcelabel"> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
537 | <x>52</x> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
538 | <y>261</y> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
539 | </hint> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
540 | <hint type="destinationlabel"> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
541 | <x>101</x> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
542 | <y>258</y> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
543 | </hint> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
544 | </hints> |
d3a640642179
Implemented a fix for issue 427.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8907
diff
changeset
|
545 | </connection> |
8907
3700e4d27e17
Corrected a missing signal slot connection in the FindFileWidget.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8846
diff
changeset
|
546 | </connections> |
268
f6f53503b8d6
Changed the Find in Files dialog to remember the history of the search string, replace string and the search directory.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
55
diff
changeset
|
547 | </ui> |