eric7/Documentation/Source/eric7.Plugins.VcsPlugins.vcsPySvn.SvnNewProjectOptionsDialog.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.SvnNewProjectOptionsDialog</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.SvnNewProjectOptionsDialog</h1>
24
25 <p>
26 Module implementing the Subversion Options Dialog for a new project from the
27 repository.
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="#SvnNewProjectOptionsDialog">SvnNewProjectOptionsDialog</a></td>
40 <td>Class implementing the Options Dialog for a new project from the repository.</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="SvnNewProjectOptionsDialog" ID="SvnNewProjectOptionsDialog"></a>
51 <h2>SvnNewProjectOptionsDialog</h2>
52
53 <p>
54 Class implementing the Options Dialog for a new project from the
55 repository.
56 </p>
57 <h3>Derived from</h3>
58 QDialog, Ui_SvnNewProjectOptionsDialog
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="#SvnNewProjectOptionsDialog.__init__">SvnNewProjectOptionsDialog</a></td>
75 <td>Constructor</td>
76 </tr>
77 <tr>
78 <td><a href="#SvnNewProjectOptionsDialog.getData">getData</a></td>
79 <td>Public slot to retrieve the data entered into the dialog.</td>
80 </tr>
81 <tr>
82 <td><a href="#SvnNewProjectOptionsDialog.on_layoutCheckBox_toggled">on_layoutCheckBox_toggled</a></td>
83 <td>Private slot to handle the change of the layout checkbox.</td>
84 </tr>
85 <tr>
86 <td><a href="#SvnNewProjectOptionsDialog.on_protocolCombo_activated">on_protocolCombo_activated</a></td>
87 <td>Private slot to switch the status of the directory selection button.</td>
88 </tr>
89 <tr>
90 <td><a href="#SvnNewProjectOptionsDialog.on_vcsProjectDirPicker_textChanged">on_vcsProjectDirPicker_textChanged</a></td>
91 <td>Private slot to handle a change of the project directory.</td>
92 </tr>
93 <tr>
94 <td><a href="#SvnNewProjectOptionsDialog.on_vcsUrlPicker_pickerButtonClicked">on_vcsUrlPicker_pickerButtonClicked</a></td>
95 <td>Private slot to display a repository browser dialog.</td>
96 </tr>
97 <tr>
98 <td><a href="#SvnNewProjectOptionsDialog.on_vcsUrlPicker_textChanged">on_vcsUrlPicker_textChanged</a></td>
99 <td>Private slot to handle changes of the URL.</td>
100 </tr>
101 </table>
102 <h3>Static Methods</h3>
103
104 <table>
105 <tr><td>None</td></tr>
106 </table>
107
108 <a NAME="SvnNewProjectOptionsDialog.__init__" ID="SvnNewProjectOptionsDialog.__init__"></a>
109 <h4>SvnNewProjectOptionsDialog (Constructor)</h4>
110 <b>SvnNewProjectOptionsDialog</b>(<i>vcs, parent=None</i>)
111
112 <p>
113 Constructor
114 </p>
115 <dl>
116
117 <dt><i>vcs</i></dt>
118 <dd>
119 reference to the version control object
120 </dd>
121 <dt><i>parent</i></dt>
122 <dd>
123 parent widget (QWidget)
124 </dd>
125 </dl>
126 <a NAME="SvnNewProjectOptionsDialog.getData" ID="SvnNewProjectOptionsDialog.getData"></a>
127 <h4>SvnNewProjectOptionsDialog.getData</h4>
128 <b>getData</b>(<i></i>)
129
130 <p>
131 Public slot to retrieve the data entered into the dialog.
132 </p>
133 <dl>
134 <dt>Return:</dt>
135 <dd>
136 a tuple of a string (project directory) and a dictionary
137 containing the data entered.
138 </dd>
139 </dl>
140 <a NAME="SvnNewProjectOptionsDialog.on_layoutCheckBox_toggled" ID="SvnNewProjectOptionsDialog.on_layoutCheckBox_toggled"></a>
141 <h4>SvnNewProjectOptionsDialog.on_layoutCheckBox_toggled</h4>
142 <b>on_layoutCheckBox_toggled</b>(<i>checked</i>)
143
144 <p>
145 Private slot to handle the change of the layout checkbox.
146 </p>
147 <dl>
148
149 <dt><i>checked</i></dt>
150 <dd>
151 flag indicating the state of the checkbox (boolean)
152 </dd>
153 </dl>
154 <a NAME="SvnNewProjectOptionsDialog.on_protocolCombo_activated" ID="SvnNewProjectOptionsDialog.on_protocolCombo_activated"></a>
155 <h4>SvnNewProjectOptionsDialog.on_protocolCombo_activated</h4>
156 <b>on_protocolCombo_activated</b>(<i>index</i>)
157
158 <p>
159 Private slot to switch the status of the directory selection button.
160 </p>
161 <dl>
162
163 <dt><i>index</i> (int)</dt>
164 <dd>
165 index of the selected entry
166 </dd>
167 </dl>
168 <a NAME="SvnNewProjectOptionsDialog.on_vcsProjectDirPicker_textChanged" ID="SvnNewProjectOptionsDialog.on_vcsProjectDirPicker_textChanged"></a>
169 <h4>SvnNewProjectOptionsDialog.on_vcsProjectDirPicker_textChanged</h4>
170 <b>on_vcsProjectDirPicker_textChanged</b>(<i>txt</i>)
171
172 <p>
173 Private slot to handle a change of the project directory.
174 </p>
175 <dl>
176
177 <dt><i>txt</i></dt>
178 <dd>
179 name of the project directory (string)
180 </dd>
181 </dl>
182 <a NAME="SvnNewProjectOptionsDialog.on_vcsUrlPicker_pickerButtonClicked" ID="SvnNewProjectOptionsDialog.on_vcsUrlPicker_pickerButtonClicked"></a>
183 <h4>SvnNewProjectOptionsDialog.on_vcsUrlPicker_pickerButtonClicked</h4>
184 <b>on_vcsUrlPicker_pickerButtonClicked</b>(<i></i>)
185
186 <p>
187 Private slot to display a repository browser dialog.
188 </p>
189 <a NAME="SvnNewProjectOptionsDialog.on_vcsUrlPicker_textChanged" ID="SvnNewProjectOptionsDialog.on_vcsUrlPicker_textChanged"></a>
190 <h4>SvnNewProjectOptionsDialog.on_vcsUrlPicker_textChanged</h4>
191 <b>on_vcsUrlPicker_textChanged</b>(<i>txt</i>)
192
193 <p>
194 Private slot to handle changes of the URL.
195 </p>
196 <dl>
197
198 <dt><i>txt</i></dt>
199 <dd>
200 current text of the line edit (string)
201 </dd>
202 </dl>
203 <div align="right"><a href="#top">Up</a></div>
204 <hr />
205 </body></html>

eric ide

mercurial