eric7/Documentation/Source/eric7.Plugins.VcsPlugins.vcsMercurial.HgClientPromptDialog.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.vcsMercurial.HgClientPromptDialog</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.vcsMercurial.HgClientPromptDialog</h1>
24
25 <p>
26 Module implementing a prompt dialog for the Mercurial command server.
27 </p>
28 <h3>Global Attributes</h3>
29
30 <table>
31 <tr><td>None</td></tr>
32 </table>
33 <h3>Classes</h3>
34
35 <table>
36
37 <tr>
38 <td><a href="#HgClientPromptDialog">HgClientPromptDialog</a></td>
39 <td>Class implementing a prompt dialog for the Mercurial command server.</td>
40 </tr>
41 </table>
42 <h3>Functions</h3>
43
44 <table>
45 <tr><td>None</td></tr>
46 </table>
47 <hr />
48 <hr />
49 <a NAME="HgClientPromptDialog" ID="HgClientPromptDialog"></a>
50 <h2>HgClientPromptDialog</h2>
51
52 <p>
53 Class implementing a prompt dialog for the Mercurial command server.
54 </p>
55 <h3>Derived from</h3>
56 QDialog, Ui_HgClientPromptDialog
57 <h3>Class Attributes</h3>
58
59 <table>
60 <tr><td>None</td></tr>
61 </table>
62 <h3>Class Methods</h3>
63
64 <table>
65 <tr><td>None</td></tr>
66 </table>
67 <h3>Methods</h3>
68
69 <table>
70
71 <tr>
72 <td><a href="#HgClientPromptDialog.__init__">HgClientPromptDialog</a></td>
73 <td>Constructor</td>
74 </tr>
75 <tr>
76 <td><a href="#HgClientPromptDialog.getInput">getInput</a></td>
77 <td>Public method to get the user input.</td>
78 </tr>
79 <tr>
80 <td><a href="#HgClientPromptDialog.isPassword">isPassword</a></td>
81 <td>Public method to check, if the input was a password.</td>
82 </tr>
83 <tr>
84 <td><a href="#HgClientPromptDialog.on_inputEdit_textChanged">on_inputEdit_textChanged</a></td>
85 <td>Private slot to handle changes of the user input.</td>
86 </tr>
87 <tr>
88 <td><a href="#HgClientPromptDialog.on_passwordCheckBox_toggled">on_passwordCheckBox_toggled</a></td>
89 <td>Private slot to handle the password checkbox toggled.</td>
90 </tr>
91 </table>
92 <h3>Static Methods</h3>
93
94 <table>
95 <tr><td>None</td></tr>
96 </table>
97
98 <a NAME="HgClientPromptDialog.__init__" ID="HgClientPromptDialog.__init__"></a>
99 <h4>HgClientPromptDialog (Constructor)</h4>
100 <b>HgClientPromptDialog</b>(<i>size, message, parent=None</i>)
101
102 <p>
103 Constructor
104 </p>
105 <dl>
106
107 <dt><i>size</i></dt>
108 <dd>
109 maximum length of the requested input (integer)
110 </dd>
111 <dt><i>message</i></dt>
112 <dd>
113 message sent by the server (string)
114 </dd>
115 <dt><i>parent</i></dt>
116 <dd>
117 reference to the parent widget (QWidget)
118 </dd>
119 </dl>
120 <a NAME="HgClientPromptDialog.getInput" ID="HgClientPromptDialog.getInput"></a>
121 <h4>HgClientPromptDialog.getInput</h4>
122 <b>getInput</b>(<i></i>)
123
124 <p>
125 Public method to get the user input.
126 </p>
127 <dl>
128 <dt>Return:</dt>
129 <dd>
130 user input (string)
131 </dd>
132 </dl>
133 <a NAME="HgClientPromptDialog.isPassword" ID="HgClientPromptDialog.isPassword"></a>
134 <h4>HgClientPromptDialog.isPassword</h4>
135 <b>isPassword</b>(<i></i>)
136
137 <p>
138 Public method to check, if the input was a password.
139 </p>
140 <dl>
141 <dt>Return:</dt>
142 <dd>
143 flag indicating a password
144 </dd>
145 </dl>
146 <dl>
147 <dt>Return Type:</dt>
148 <dd>
149 bool
150 </dd>
151 </dl>
152 <a NAME="HgClientPromptDialog.on_inputEdit_textChanged" ID="HgClientPromptDialog.on_inputEdit_textChanged"></a>
153 <h4>HgClientPromptDialog.on_inputEdit_textChanged</h4>
154 <b>on_inputEdit_textChanged</b>(<i>txt</i>)
155
156 <p>
157 Private slot to handle changes of the user input.
158 </p>
159 <dl>
160
161 <dt><i>txt</i></dt>
162 <dd>
163 text entered by the user (string)
164 </dd>
165 </dl>
166 <a NAME="HgClientPromptDialog.on_passwordCheckBox_toggled" ID="HgClientPromptDialog.on_passwordCheckBox_toggled"></a>
167 <h4>HgClientPromptDialog.on_passwordCheckBox_toggled</h4>
168 <b>on_passwordCheckBox_toggled</b>(<i>isOn</i>)
169
170 <p>
171 Private slot to handle the password checkbox toggled.
172 </p>
173 <dl>
174
175 <dt><i>isOn</i></dt>
176 <dd>
177 flag indicating the status of the check box (boolean)
178 </dd>
179 </dl>
180 <div align="right"><a href="#top">Up</a></div>
181 <hr />
182 </body></html>

eric ide

mercurial