|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
3 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
4 <html><head> |
|
5 <title>eric5.Plugins.VcsPlugins.vcsSubversion.SvnUrlSelectionDialog</title> |
|
6 <style> |
|
7 b'body {\n background:white;\n margin: 0em 1em 10em 1em;\n color: black;\n}\n\nh1 { color: white; background: #4FA4FF; }\nh2 { color: white; background: #4FA4FF; }\nh3 { color: white; background: #00557F; }\nh4 { color: white; background: #00557F; }\n \na { color: #AA5500; }\n' |
|
8 </style> |
|
9 </head> |
|
10 <body><a NAME="top" ID="top"></a> |
|
11 <h1>eric5.Plugins.VcsPlugins.vcsSubversion.SvnUrlSelectionDialog</h1> |
|
12 <p> |
|
13 Module implementing a dialog to enter the URLs for the svn diff command. |
|
14 </p> |
|
15 <h3>Global Attributes</h3> |
|
16 <table> |
|
17 <tr><td>None</td></tr> |
|
18 </table> |
|
19 <h3>Classes</h3> |
|
20 <table> |
|
21 <tr> |
|
22 <td><a href="#SvnUrlSelectionDialog">SvnUrlSelectionDialog</a></td> |
|
23 <td>Class implementing a dialog to enter the URLs for the svn diff command.</td> |
|
24 </tr> |
|
25 </table> |
|
26 <h3>Functions</h3> |
|
27 <table> |
|
28 <tr><td>None</td></tr> |
|
29 </table> |
|
30 <hr /><hr /> |
|
31 <a NAME="SvnUrlSelectionDialog" ID="SvnUrlSelectionDialog"></a> |
|
32 <h2>SvnUrlSelectionDialog</h2> |
|
33 <p> |
|
34 Class implementing a dialog to enter the URLs for the svn diff command. |
|
35 </p> |
|
36 <h3>Derived from</h3> |
|
37 QDialog, Ui_SvnUrlSelectionDialog |
|
38 <h3>Class Attributes</h3> |
|
39 <table> |
|
40 <tr><td>None</td></tr> |
|
41 </table> |
|
42 <h3>Methods</h3> |
|
43 <table> |
|
44 <tr> |
|
45 <td><a href="#SvnUrlSelectionDialog.__init__">SvnUrlSelectionDialog</a></td> |
|
46 <td>Constructor</td> |
|
47 </tr><tr> |
|
48 <td><a href="#SvnUrlSelectionDialog.__changeLabelCombo">__changeLabelCombo</a></td> |
|
49 <td>Private method used to change the label combo depending on the selected type.</td> |
|
50 </tr><tr> |
|
51 <td><a href="#SvnUrlSelectionDialog.getURLs">getURLs</a></td> |
|
52 <td>Public method to get the entered URLs.</td> |
|
53 </tr><tr> |
|
54 <td><a href="#SvnUrlSelectionDialog.on_typeCombo1_currentIndexChanged">on_typeCombo1_currentIndexChanged</a></td> |
|
55 <td>Private slot called when the selected type was changed.</td> |
|
56 </tr><tr> |
|
57 <td><a href="#SvnUrlSelectionDialog.on_typeCombo2_currentIndexChanged">on_typeCombo2_currentIndexChanged</a></td> |
|
58 <td>Private slot called when the selected type was changed.</td> |
|
59 </tr> |
|
60 </table> |
|
61 <a NAME="SvnUrlSelectionDialog.__init__" ID="SvnUrlSelectionDialog.__init__"></a> |
|
62 <h4>SvnUrlSelectionDialog (Constructor)</h4> |
|
63 <b>SvnUrlSelectionDialog</b>(<i>vcs, tagsList, branchesList, path, parent = None</i>) |
|
64 <p> |
|
65 Constructor |
|
66 </p><dl> |
|
67 <dt><i>vcs</i></dt> |
|
68 <dd> |
|
69 reference to the vcs object |
|
70 </dd><dt><i>tagsList</i></dt> |
|
71 <dd> |
|
72 list of tags (list of strings) |
|
73 </dd><dt><i>branchesList</i></dt> |
|
74 <dd> |
|
75 list of branches (list of strings) |
|
76 </dd><dt><i>path</i></dt> |
|
77 <dd> |
|
78 pathname to determine the repository URL from (string) |
|
79 </dd><dt><i>parent</i></dt> |
|
80 <dd> |
|
81 parent widget of the dialog (QWidget) |
|
82 </dd> |
|
83 </dl><a NAME="SvnUrlSelectionDialog.__changeLabelCombo" ID="SvnUrlSelectionDialog.__changeLabelCombo"></a> |
|
84 <h4>SvnUrlSelectionDialog.__changeLabelCombo</h4> |
|
85 <b>__changeLabelCombo</b>(<i>labelCombo, type_</i>) |
|
86 <p> |
|
87 Private method used to change the label combo depending on the |
|
88 selected type. |
|
89 </p><dl> |
|
90 <dt><i>labelCombo</i></dt> |
|
91 <dd> |
|
92 reference to the labelCombo object (QComboBox) |
|
93 </dd><dt><i>type</i></dt> |
|
94 <dd> |
|
95 type string (string) |
|
96 </dd> |
|
97 </dl><a NAME="SvnUrlSelectionDialog.getURLs" ID="SvnUrlSelectionDialog.getURLs"></a> |
|
98 <h4>SvnUrlSelectionDialog.getURLs</h4> |
|
99 <b>getURLs</b>(<i></i>) |
|
100 <p> |
|
101 Public method to get the entered URLs. |
|
102 </p><dl> |
|
103 <dt>Returns:</dt> |
|
104 <dd> |
|
105 tuple of list of two URL strings (list of strings) and |
|
106 a flag indicating a diff summary (boolean) |
|
107 </dd> |
|
108 </dl><a NAME="SvnUrlSelectionDialog.on_typeCombo1_currentIndexChanged" ID="SvnUrlSelectionDialog.on_typeCombo1_currentIndexChanged"></a> |
|
109 <h4>SvnUrlSelectionDialog.on_typeCombo1_currentIndexChanged</h4> |
|
110 <b>on_typeCombo1_currentIndexChanged</b>(<i>type_</i>) |
|
111 <p> |
|
112 Private slot called when the selected type was changed. |
|
113 </p><dl> |
|
114 <dt><i>type_</i></dt> |
|
115 <dd> |
|
116 selected type (string) |
|
117 </dd> |
|
118 </dl><a NAME="SvnUrlSelectionDialog.on_typeCombo2_currentIndexChanged" ID="SvnUrlSelectionDialog.on_typeCombo2_currentIndexChanged"></a> |
|
119 <h4>SvnUrlSelectionDialog.on_typeCombo2_currentIndexChanged</h4> |
|
120 <b>on_typeCombo2_currentIndexChanged</b>(<i>type_</i>) |
|
121 <p> |
|
122 Private slot called when the selected type was changed. |
|
123 </p><dl> |
|
124 <dt><i>type_</i></dt> |
|
125 <dd> |
|
126 selected type (string) |
|
127 </dd> |
|
128 </dl> |
|
129 <div align="right"><a href="#top">Up</a></div> |
|
130 <hr /> |
|
131 </body></html> |