Sat, 27 Jun 2015 11:15:48 +0200
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
1 | <!DOCTYPE html> |
17 | 2 | <html><head> |
3 | <title>Plugin_Refactoring_Rope.RefactoringRope.SearchDialog</title> | |
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
4 | <meta charset="UTF-8"> |
17 | 5 | <style> |
6 | body { | |
7 | background: #EDECE6; | |
8 | margin: 0em 1em 10em 1em; | |
9 | color: black; | |
10 | } | |
11 | ||
12 | h1 { color: white; background: #85774A; } | |
13 | h2 { color: white; background: #85774A; } | |
14 | h3 { color: white; background: #9D936E; } | |
15 | h4 { color: white; background: #9D936E; } | |
16 | ||
17 | a { color: #BA6D36; } | |
18 | ||
19 | </style> | |
20 | </head> | |
21 | <body><a NAME="top" ID="top"></a> | |
22 | <h1>Plugin_Refactoring_Rope.RefactoringRope.SearchDialog</h1> | |
23 | <p> | |
24 | Module implementing the search dialog for the rope help dialog. | |
25 | </p> | |
26 | <h3>Global Attributes</h3> | |
27 | <table> | |
28 | <tr><td>None</td></tr> | |
29 | </table> | |
30 | <h3>Classes</h3> | |
31 | <table> | |
32 | <tr> | |
33 | <td><a href="#SearchDialog">SearchDialog</a></td> | |
34 | <td>Module implementing the search dialog for the rope help dialog.</td> | |
35 | </tr> | |
36 | </table> | |
37 | <h3>Functions</h3> | |
38 | <table> | |
39 | <tr><td>None</td></tr> | |
40 | </table> | |
41 | <hr /><hr /> | |
42 | <a NAME="SearchDialog" ID="SearchDialog"></a> | |
43 | <h2>SearchDialog</h2> | |
44 | <p> | |
45 | Module implementing the search dialog for the rope help dialog. | |
46 | </p> | |
47 | <h3>Derived from</h3> | |
48 | QDialog, Ui_SearchDialog | |
49 | <h3>Class Attributes</h3> | |
50 | <table> | |
51 | <tr><td>None</td></tr> | |
52 | </table> | |
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
53 | <h3>Class Methods</h3> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
54 | <table> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
55 | <tr><td>None</td></tr> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
56 | </table> |
17 | 57 | <h3>Methods</h3> |
58 | <table> | |
59 | <tr> | |
60 | <td><a href="#SearchDialog.__init__">SearchDialog</a></td> | |
61 | <td>Constructor</td> | |
62 | </tr><tr> | |
63 | <td><a href="#SearchDialog.__findNextPrev">__findNextPrev</a></td> | |
64 | <td>Private slot to find the next occurrence of text.</td> | |
65 | </tr><tr> | |
66 | <td><a href="#SearchDialog.findNext">findNext</a></td> | |
67 | <td>Public slot to find the next occurrence.</td> | |
68 | </tr><tr> | |
69 | <td><a href="#SearchDialog.findPrevious">findPrevious</a></td> | |
70 | <td>Public slot to find the previous occurrence.</td> | |
71 | </tr><tr> | |
72 | <td><a href="#SearchDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> | |
73 | <td>Private slot called by a button of the button box clicked.</td> | |
74 | </tr><tr> | |
75 | <td><a href="#SearchDialog.on_findButton_clicked">on_findButton_clicked</a></td> | |
76 | <td>Private slot to find the entered text in the displayed page.</td> | |
77 | </tr><tr> | |
78 | <td><a href="#SearchDialog.on_findtextCombo_editTextChanged">on_findtextCombo_editTextChanged</a></td> | |
79 | <td>Private slot to enable/disable the find buttons.</td> | |
80 | </tr><tr> | |
81 | <td><a href="#SearchDialog.showFind">showFind</a></td> | |
82 | <td>Public method to display this dialog.</td> | |
83 | </tr> | |
84 | </table> | |
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
85 | <h3>Static Methods</h3> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
86 | <table> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
87 | <tr><td>None</td></tr> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
24
diff
changeset
|
88 | </table> |
17 | 89 | <a NAME="SearchDialog.__init__" ID="SearchDialog.__init__"></a> |
90 | <h4>SearchDialog (Constructor)</h4> | |
24
e18b36080a37
Updated source docu after making the code PEP-8 compliant.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
91 | <b>SearchDialog</b>(<i>parent=None, name="", fl=Qt.WindowFlags(Qt.Widget)</i>) |
17 | 92 | <p> |
93 | Constructor | |
94 | </p><dl> | |
95 | <dt><i>parent</i></dt> | |
96 | <dd> | |
97 | parent widget of this dialog (QWidget) | |
98 | </dd><dt><i>name</i></dt> | |
99 | <dd> | |
100 | object name of the dialog (string) | |
101 | </dd><dt><i>fl</i></dt> | |
102 | <dd> | |
103 | window flags | |
104 | </dd> | |
105 | </dl><a NAME="SearchDialog.__findNextPrev" ID="SearchDialog.__findNextPrev"></a> | |
106 | <h4>SearchDialog.__findNextPrev</h4> | |
107 | <b>__findNextPrev</b>(<i>backwards</i>) | |
108 | <p> | |
109 | Private slot to find the next occurrence of text. | |
110 | </p><dl> | |
111 | <dt><i>backwards</i></dt> | |
112 | <dd> | |
113 | flag indicating a backwards search (boolean) | |
114 | </dd> | |
115 | </dl><a NAME="SearchDialog.findNext" ID="SearchDialog.findNext"></a> | |
116 | <h4>SearchDialog.findNext</h4> | |
117 | <b>findNext</b>(<i></i>) | |
118 | <p> | |
119 | Public slot to find the next occurrence. | |
120 | </p><a NAME="SearchDialog.findPrevious" ID="SearchDialog.findPrevious"></a> | |
121 | <h4>SearchDialog.findPrevious</h4> | |
122 | <b>findPrevious</b>(<i></i>) | |
123 | <p> | |
124 | Public slot to find the previous occurrence. | |
125 | </p><a NAME="SearchDialog.on_buttonBox_clicked" ID="SearchDialog.on_buttonBox_clicked"></a> | |
126 | <h4>SearchDialog.on_buttonBox_clicked</h4> | |
127 | <b>on_buttonBox_clicked</b>(<i>button</i>) | |
128 | <p> | |
129 | Private slot called by a button of the button box clicked. | |
130 | </p><dl> | |
131 | <dt><i>button</i></dt> | |
132 | <dd> | |
133 | button that was clicked (QAbstractButton) | |
134 | </dd> | |
135 | </dl><a NAME="SearchDialog.on_findButton_clicked" ID="SearchDialog.on_findButton_clicked"></a> | |
136 | <h4>SearchDialog.on_findButton_clicked</h4> | |
137 | <b>on_findButton_clicked</b>(<i></i>) | |
138 | <p> | |
139 | Private slot to find the entered text in the displayed page. | |
140 | </p><a NAME="SearchDialog.on_findtextCombo_editTextChanged" ID="SearchDialog.on_findtextCombo_editTextChanged"></a> | |
141 | <h4>SearchDialog.on_findtextCombo_editTextChanged</h4> | |
142 | <b>on_findtextCombo_editTextChanged</b>(<i>txt</i>) | |
143 | <p> | |
144 | Private slot to enable/disable the find buttons. | |
55
d501156be247
Fixed code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
44
diff
changeset
|
145 | </p><dl> |
d501156be247
Fixed code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
44
diff
changeset
|
146 | <dt><i>txt</i></dt> |
d501156be247
Fixed code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
44
diff
changeset
|
147 | <dd> |
d501156be247
Fixed code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
44
diff
changeset
|
148 | text of the combo box (string) |
d501156be247
Fixed code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
44
diff
changeset
|
149 | </dd> |
d501156be247
Fixed code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
44
diff
changeset
|
150 | </dl><a NAME="SearchDialog.showFind" ID="SearchDialog.showFind"></a> |
17 | 151 | <h4>SearchDialog.showFind</h4> |
152 | <b>showFind</b>(<i></i>) | |
153 | <p> | |
154 | Public method to display this dialog. | |
155 | </p> | |
156 | <div align="right"><a href="#top">Up</a></div> | |
157 | <hr /> | |
158 | </body></html> |