eric7/Documentation/Source/eric7.Plugins.VcsPlugins.vcsPySvn.SvnPropListDialog.html

branch
eric7
changeset 8372
e0227a7c850e
child 8596
d64760b2da50
equal deleted inserted replaced
8371:d6062691d424 8372:e0227a7c850e
1 <!DOCTYPE html>
2 <html><head>
3 <title>eric7.Plugins.VcsPlugins.vcsPySvn.SvnPropListDialog</title>
4 <meta charset="UTF-8">
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>
22 <a NAME="top" ID="top"></a>
23 <h1>eric7.Plugins.VcsPlugins.vcsPySvn.SvnPropListDialog</h1>
24
25 <p>
26 Module implementing a dialog to show the output of the svn proplist command
27 process.
28 </p>
29 <h3>Global Attributes</h3>
30
31 <table>
32 <tr><td>None</td></tr>
33 </table>
34 <h3>Classes</h3>
35
36 <table>
37
38 <tr>
39 <td><a href="#SvnPropListDialog">SvnPropListDialog</a></td>
40 <td>Class implementing a dialog to show the output of the svn proplist command process.</td>
41 </tr>
42 </table>
43 <h3>Functions</h3>
44
45 <table>
46 <tr><td>None</td></tr>
47 </table>
48 <hr />
49 <hr />
50 <a NAME="SvnPropListDialog" ID="SvnPropListDialog"></a>
51 <h2>SvnPropListDialog</h2>
52
53 <p>
54 Class implementing a dialog to show the output of the svn proplist command
55 process.
56 </p>
57 <h3>Derived from</h3>
58 QWidget, SvnDialogMixin, Ui_SvnPropListDialog
59 <h3>Class Attributes</h3>
60
61 <table>
62 <tr><td>None</td></tr>
63 </table>
64 <h3>Class Methods</h3>
65
66 <table>
67 <tr><td>None</td></tr>
68 </table>
69 <h3>Methods</h3>
70
71 <table>
72
73 <tr>
74 <td><a href="#SvnPropListDialog.__init__">SvnPropListDialog</a></td>
75 <td>Constructor</td>
76 </tr>
77 <tr>
78 <td><a href="#SvnPropListDialog.__finish">__finish</a></td>
79 <td>Private slot called when the process finished or the user pressed the button.</td>
80 </tr>
81 <tr>
82 <td><a href="#SvnPropListDialog.__generateItem">__generateItem</a></td>
83 <td>Private method to generate a properties item in the properties list.</td>
84 </tr>
85 <tr>
86 <td><a href="#SvnPropListDialog.__resizeColumns">__resizeColumns</a></td>
87 <td>Private method to resize the list columns.</td>
88 </tr>
89 <tr>
90 <td><a href="#SvnPropListDialog.__resort">__resort</a></td>
91 <td>Private method to resort the tree.</td>
92 </tr>
93 <tr>
94 <td><a href="#SvnPropListDialog.__showError">__showError</a></td>
95 <td>Private slot to show an error message.</td>
96 </tr>
97 <tr>
98 <td><a href="#SvnPropListDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
99 <td>Private slot called by a button of the button box clicked.</td>
100 </tr>
101 <tr>
102 <td><a href="#SvnPropListDialog.on_refreshButton_clicked">on_refreshButton_clicked</a></td>
103 <td>Private slot to refresh the status display.</td>
104 </tr>
105 <tr>
106 <td><a href="#SvnPropListDialog.start">start</a></td>
107 <td>Public slot to start the svn status command.</td>
108 </tr>
109 </table>
110 <h3>Static Methods</h3>
111
112 <table>
113 <tr><td>None</td></tr>
114 </table>
115
116 <a NAME="SvnPropListDialog.__init__" ID="SvnPropListDialog.__init__"></a>
117 <h4>SvnPropListDialog (Constructor)</h4>
118 <b>SvnPropListDialog</b>(<i>vcs, parent=None</i>)
119
120 <p>
121 Constructor
122 </p>
123 <dl>
124
125 <dt><i>vcs</i></dt>
126 <dd>
127 reference to the vcs object
128 </dd>
129 <dt><i>parent</i></dt>
130 <dd>
131 parent widget (QWidget)
132 </dd>
133 </dl>
134 <a NAME="SvnPropListDialog.__finish" ID="SvnPropListDialog.__finish"></a>
135 <h4>SvnPropListDialog.__finish</h4>
136 <b>__finish</b>(<i></i>)
137
138 <p>
139 Private slot called when the process finished or the user pressed the
140 button.
141 </p>
142 <a NAME="SvnPropListDialog.__generateItem" ID="SvnPropListDialog.__generateItem"></a>
143 <h4>SvnPropListDialog.__generateItem</h4>
144 <b>__generateItem</b>(<i>path, propName, propValue</i>)
145
146 <p>
147 Private method to generate a properties item in the properties list.
148 </p>
149 <dl>
150
151 <dt><i>path</i></dt>
152 <dd>
153 file/directory name the property applies to (string)
154 </dd>
155 <dt><i>propName</i></dt>
156 <dd>
157 name of the property (string)
158 </dd>
159 <dt><i>propValue</i></dt>
160 <dd>
161 value of the property (string)
162 </dd>
163 </dl>
164 <a NAME="SvnPropListDialog.__resizeColumns" ID="SvnPropListDialog.__resizeColumns"></a>
165 <h4>SvnPropListDialog.__resizeColumns</h4>
166 <b>__resizeColumns</b>(<i></i>)
167
168 <p>
169 Private method to resize the list columns.
170 </p>
171 <a NAME="SvnPropListDialog.__resort" ID="SvnPropListDialog.__resort"></a>
172 <h4>SvnPropListDialog.__resort</h4>
173 <b>__resort</b>(<i></i>)
174
175 <p>
176 Private method to resort the tree.
177 </p>
178 <a NAME="SvnPropListDialog.__showError" ID="SvnPropListDialog.__showError"></a>
179 <h4>SvnPropListDialog.__showError</h4>
180 <b>__showError</b>(<i>msg</i>)
181
182 <p>
183 Private slot to show an error message.
184 </p>
185 <dl>
186
187 <dt><i>msg</i></dt>
188 <dd>
189 error message to show (string)
190 </dd>
191 </dl>
192 <a NAME="SvnPropListDialog.on_buttonBox_clicked" ID="SvnPropListDialog.on_buttonBox_clicked"></a>
193 <h4>SvnPropListDialog.on_buttonBox_clicked</h4>
194 <b>on_buttonBox_clicked</b>(<i>button</i>)
195
196 <p>
197 Private slot called by a button of the button box clicked.
198 </p>
199 <dl>
200
201 <dt><i>button</i></dt>
202 <dd>
203 button that was clicked (QAbstractButton)
204 </dd>
205 </dl>
206 <a NAME="SvnPropListDialog.on_refreshButton_clicked" ID="SvnPropListDialog.on_refreshButton_clicked"></a>
207 <h4>SvnPropListDialog.on_refreshButton_clicked</h4>
208 <b>on_refreshButton_clicked</b>(<i></i>)
209
210 <p>
211 Private slot to refresh the status display.
212 </p>
213 <a NAME="SvnPropListDialog.start" ID="SvnPropListDialog.start"></a>
214 <h4>SvnPropListDialog.start</h4>
215 <b>start</b>(<i>fn, recursive=False</i>)
216
217 <p>
218 Public slot to start the svn status command.
219 </p>
220 <dl>
221
222 <dt><i>fn</i></dt>
223 <dd>
224 filename(s) (string or list of strings)
225 </dd>
226 <dt><i>recursive</i></dt>
227 <dd>
228 flag indicating a recursive list is requested
229 </dd>
230 </dl>
231 <div align="right"><a href="#top">Up</a></div>
232 <hr />
233 </body></html>

eric ide

mercurial