~ubuntu-branches/ubuntu/karmic/eric/karmic

« back to all changes in this revision

Viewing changes to eric/Documentation/Source/eric4.UI.EmailDialog.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2008-01-28 18:02:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080128180225-6nrox6yrworh2c4v
Tags: 4.0.4-1ubuntu1
* Add python-qt3 to build-depends becuase that's where Ubuntu puts 
  pyqtconfig
* Change maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>eric4.UI.EmailDialog</title>
 
6
<style>
 
7
body {
 
8
    background:white;
 
9
    margin: 0em 1em 10em 1em;
 
10
    color: black;
 
11
}
 
12
 
 
13
h1 { color: white; background: #4FA4FF; }
 
14
h2 { color: white; background: #4FA4FF; }
 
15
h3 { color: white; background: #00557F; }
 
16
h4 { color: white; background: #00557F; }
 
17
    
 
18
a { color: #AA5500; }
 
19
 
 
20
</style>
 
21
</head>
 
22
<body><a NAME="top" ID="top"></a>
 
23
<h1>eric4.UI.EmailDialog</h1>
 
24
<p>
 
25
Module implementing a dialog to send bug reports.
 
26
</p>
 
27
<h3>Classes</h3>
 
28
<table>
 
29
<tr>
 
30
<td><a href="#EmailDialog">EmailDialog</a></td>
 
31
<td>Class implementing a dialog to send bug reports.</td>
 
32
</tr>
 
33
</table>
 
34
<h3>Functions</h3>
 
35
<table>
 
36
<tr><td>None</td></tr>
 
37
</table>
 
38
<hr /><hr />
 
39
<a NAME="EmailDialog" ID="EmailDialog"></a>
 
40
<h2>EmailDialog</h2>
 
41
<p>
 
42
    Class implementing a dialog to send bug reports.
 
43
</p>
 
44
<h3>Derived from</h3>
 
45
QDialog, Ui_EmailDialog
 
46
<h3>Methods</h3>
 
47
<table>
 
48
<tr>
 
49
<td><a href="#EmailDialog.__init__">EmailDialog</a></td>
 
50
<td>Constructor</td>
 
51
</tr><tr>
 
52
<td><a href="#EmailDialog.__createMultipartMail">__createMultipartMail</a></td>
 
53
<td>Private method to create a multipart mail message.</td>
 
54
</tr><tr>
 
55
<td><a href="#EmailDialog.__createSimpleMail">__createSimpleMail</a></td>
 
56
<td>Private method to create a simple mail message.</td>
 
57
</tr><tr>
 
58
<td><a href="#EmailDialog.__sendmail">__sendmail</a></td>
 
59
<td>Private method to actually send the message.</td>
 
60
</tr><tr>
 
61
<td><a href="#EmailDialog.keyPressEvent">keyPressEvent</a></td>
 
62
<td>Re-implemented to handle the user pressing the escape key.</td>
 
63
</tr><tr>
 
64
<td><a href="#EmailDialog.on_addButton_clicked">on_addButton_clicked</a></td>
 
65
<td>Private slot to handle the Add...</td>
 
66
</tr><tr>
 
67
<td><a href="#EmailDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
 
68
<td>Private slot called by a button of the button box clicked.</td>
 
69
</tr><tr>
 
70
<td><a href="#EmailDialog.on_buttonBox_rejected">on_buttonBox_rejected</a></td>
 
71
<td>Private slot to handle the rejected signal of the button box.</td>
 
72
</tr><tr>
 
73
<td><a href="#EmailDialog.on_deleteButton_clicked">on_deleteButton_clicked</a></td>
 
74
<td>Private slot to handle the Delete button.</td>
 
75
</tr><tr>
 
76
<td><a href="#EmailDialog.on_message_textChanged">on_message_textChanged</a></td>
 
77
<td>Private slot to handle the textChanged signal of the message edit.</td>
 
78
</tr><tr>
 
79
<td><a href="#EmailDialog.on_sendButton_clicked">on_sendButton_clicked</a></td>
 
80
<td>Private slot to send the email message.</td>
 
81
</tr><tr>
 
82
<td><a href="#EmailDialog.on_subject_textChanged">on_subject_textChanged</a></td>
 
83
<td>Private slot to handle the textChanged signal of the subject edit.</td>
 
84
</tr>
 
85
</table>
 
86
<p><a NAME="EmailDialog.__init__" ID="EmailDialog.__init__"></a>
 
87
<h4>EmailDialog (Constructor)</h4>
 
88
<b>EmailDialog</b>(<i>parent=None</i>)
 
89
<p>
 
90
        Constructor
 
91
</p><dl>
 
92
<dt><i>parent</i></dt>
 
93
<dd>
 
94
parent widget of this dialog (QWidget)
 
95
</dd>
 
96
</dl><a NAME="EmailDialog.__createMultipartMail" ID="EmailDialog.__createMultipartMail"></a>
 
97
<h4>EmailDialog.__createMultipartMail</h4>
 
98
<b>__createMultipartMail</b>(<i></i>)
 
99
<p>
 
100
        Private method to create a multipart mail message.
 
101
</p><dl>
 
102
<dt>Returns:</dt>
 
103
<dd>
 
104
string containing the mail message
 
105
</dd>
 
106
</dl><a NAME="EmailDialog.__createSimpleMail" ID="EmailDialog.__createSimpleMail"></a>
 
107
<h4>EmailDialog.__createSimpleMail</h4>
 
108
<b>__createSimpleMail</b>(<i></i>)
 
109
<p>
 
110
        Private method to create a simple mail message.
 
111
</p><dl>
 
112
<dt>Returns:</dt>
 
113
<dd>
 
114
string containing the mail message
 
115
</dd>
 
116
</dl><a NAME="EmailDialog.__sendmail" ID="EmailDialog.__sendmail"></a>
 
117
<h4>EmailDialog.__sendmail</h4>
 
118
<b>__sendmail</b>(<i>msg</i>)
 
119
<p>
 
120
        Private method to actually send the message.
 
121
</p><dl>
 
122
<dt><i>msg</i></dt>
 
123
<dd>
 
124
the message to be sent (string)
 
125
</dd>
 
126
</dl><dl>
 
127
<dt>Returns:</dt>
 
128
<dd>
 
129
flag indicating success (boolean)
 
130
</dd>
 
131
</dl><a NAME="EmailDialog.keyPressEvent" ID="EmailDialog.keyPressEvent"></a>
 
132
<h4>EmailDialog.keyPressEvent</h4>
 
133
<b>keyPressEvent</b>(<i>ev</i>)
 
134
<p>
 
135
        Re-implemented to handle the user pressing the escape key.
 
136
</p><dl>
 
137
<dt><i>ev</i></dt>
 
138
<dd>
 
139
key event (QKeyEvent)
 
140
</dd>
 
141
</dl><a NAME="EmailDialog.on_addButton_clicked" ID="EmailDialog.on_addButton_clicked"></a>
 
142
<h4>EmailDialog.on_addButton_clicked</h4>
 
143
<b>on_addButton_clicked</b>(<i></i>)
 
144
<p>
 
145
        Private slot to handle the Add... button.
 
146
</p><a NAME="EmailDialog.on_buttonBox_clicked" ID="EmailDialog.on_buttonBox_clicked"></a>
 
147
<h4>EmailDialog.on_buttonBox_clicked</h4>
 
148
<b>on_buttonBox_clicked</b>(<i>button</i>)
 
149
<p>
 
150
        Private slot called by a button of the button box clicked.
 
151
</p><dl>
 
152
<dt><i>button</i></dt>
 
153
<dd>
 
154
button that was clicked (QAbstractButton)
 
155
</dd>
 
156
</dl><a NAME="EmailDialog.on_buttonBox_rejected" ID="EmailDialog.on_buttonBox_rejected"></a>
 
157
<h4>EmailDialog.on_buttonBox_rejected</h4>
 
158
<b>on_buttonBox_rejected</b>(<i></i>)
 
159
<p>
 
160
        Private slot to handle the rejected signal of the button box.
 
161
</p><a NAME="EmailDialog.on_deleteButton_clicked" ID="EmailDialog.on_deleteButton_clicked"></a>
 
162
<h4>EmailDialog.on_deleteButton_clicked</h4>
 
163
<b>on_deleteButton_clicked</b>(<i></i>)
 
164
<p>
 
165
        Private slot to handle the Delete button.
 
166
</p><a NAME="EmailDialog.on_message_textChanged" ID="EmailDialog.on_message_textChanged"></a>
 
167
<h4>EmailDialog.on_message_textChanged</h4>
 
168
<b>on_message_textChanged</b>(<i></i>)
 
169
<p>
 
170
        Private slot to handle the textChanged signal of the message edit.
 
171
</p><dl>
 
172
<dt><i>txt</i></dt>
 
173
<dd>
 
174
changed text (QString)
 
175
</dd>
 
176
</dl><a NAME="EmailDialog.on_sendButton_clicked" ID="EmailDialog.on_sendButton_clicked"></a>
 
177
<h4>EmailDialog.on_sendButton_clicked</h4>
 
178
<b>on_sendButton_clicked</b>(<i></i>)
 
179
<p>
 
180
        Private slot to send the email message.
 
181
</p><a NAME="EmailDialog.on_subject_textChanged" ID="EmailDialog.on_subject_textChanged"></a>
 
182
<h4>EmailDialog.on_subject_textChanged</h4>
 
183
<b>on_subject_textChanged</b>(<i>txt</i>)
 
184
<p>
 
185
        Private slot to handle the textChanged signal of the subject edit.
 
186
</p><dl>
 
187
<dt><i>txt</i></dt>
 
188
<dd>
 
189
changed text (QString)
 
190
</dd>
 
191
</dl></p>
 
192
<div align="right"><a href="#top">Up</a></div>
 
193
<hr />
 
194
</body></html>
 
 
b'\\ No newline at end of file'