|
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.Helpviewer.CookieJar.CookiesExceptionsDialog</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.Helpviewer.CookieJar.CookiesExceptionsDialog</h1> |
|
12 <p> |
|
13 Module implementing a dialog for the configuration of cookie exceptions. |
|
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="#CookiesExceptionsDialog">CookiesExceptionsDialog</a></td> |
|
23 <td>Class implementing a dialog for the configuration of cookie exceptions.</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="CookiesExceptionsDialog" ID="CookiesExceptionsDialog"></a> |
|
32 <h2>CookiesExceptionsDialog</h2> |
|
33 <p> |
|
34 Class implementing a dialog for the configuration of cookie exceptions. |
|
35 </p> |
|
36 <h3>Derived from</h3> |
|
37 QDialog, Ui_CookiesExceptionsDialog |
|
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="#CookiesExceptionsDialog.__init__">CookiesExceptionsDialog</a></td> |
|
46 <td>Constructor</td> |
|
47 </tr><tr> |
|
48 <td><a href="#CookiesExceptionsDialog.on_allowButton_clicked">on_allowButton_clicked</a></td> |
|
49 <td>Private slot to allow cookies of a domain.</td> |
|
50 </tr><tr> |
|
51 <td><a href="#CookiesExceptionsDialog.on_allowForSessionButton_clicked">on_allowForSessionButton_clicked</a></td> |
|
52 <td>Private slot to allow cookies of a domain for the current session only.</td> |
|
53 </tr><tr> |
|
54 <td><a href="#CookiesExceptionsDialog.on_blockButton_clicked">on_blockButton_clicked</a></td> |
|
55 <td>Private slot to block cookies of a domain.</td> |
|
56 </tr><tr> |
|
57 <td><a href="#CookiesExceptionsDialog.on_domainEdit_textChanged">on_domainEdit_textChanged</a></td> |
|
58 <td>Private slot to handle a change of the domain edit text.</td> |
|
59 </tr><tr> |
|
60 <td><a href="#CookiesExceptionsDialog.setDomainName">setDomainName</a></td> |
|
61 <td>Public method to set the domain to be displayed.</td> |
|
62 </tr> |
|
63 </table> |
|
64 <a NAME="CookiesExceptionsDialog.__init__" ID="CookiesExceptionsDialog.__init__"></a> |
|
65 <h4>CookiesExceptionsDialog (Constructor)</h4> |
|
66 <b>CookiesExceptionsDialog</b>(<i>cookieJar, parent = None</i>) |
|
67 <p> |
|
68 Constructor |
|
69 </p><dl> |
|
70 <dt><i>cookieJar</i></dt> |
|
71 <dd> |
|
72 reference to the cookie jar (CookieJar) |
|
73 </dd><dt><i>parent</i></dt> |
|
74 <dd> |
|
75 reference to the parent widget (QWidget) |
|
76 </dd> |
|
77 </dl><a NAME="CookiesExceptionsDialog.on_allowButton_clicked" ID="CookiesExceptionsDialog.on_allowButton_clicked"></a> |
|
78 <h4>CookiesExceptionsDialog.on_allowButton_clicked</h4> |
|
79 <b>on_allowButton_clicked</b>(<i></i>) |
|
80 <p> |
|
81 Private slot to allow cookies of a domain. |
|
82 </p><a NAME="CookiesExceptionsDialog.on_allowForSessionButton_clicked" ID="CookiesExceptionsDialog.on_allowForSessionButton_clicked"></a> |
|
83 <h4>CookiesExceptionsDialog.on_allowForSessionButton_clicked</h4> |
|
84 <b>on_allowForSessionButton_clicked</b>(<i></i>) |
|
85 <p> |
|
86 Private slot to allow cookies of a domain for the current session only. |
|
87 </p><a NAME="CookiesExceptionsDialog.on_blockButton_clicked" ID="CookiesExceptionsDialog.on_blockButton_clicked"></a> |
|
88 <h4>CookiesExceptionsDialog.on_blockButton_clicked</h4> |
|
89 <b>on_blockButton_clicked</b>(<i></i>) |
|
90 <p> |
|
91 Private slot to block cookies of a domain. |
|
92 </p><a NAME="CookiesExceptionsDialog.on_domainEdit_textChanged" ID="CookiesExceptionsDialog.on_domainEdit_textChanged"></a> |
|
93 <h4>CookiesExceptionsDialog.on_domainEdit_textChanged</h4> |
|
94 <b>on_domainEdit_textChanged</b>(<i>txt</i>) |
|
95 <p> |
|
96 Private slot to handle a change of the domain edit text. |
|
97 </p><dl> |
|
98 <dt><i>txt</i></dt> |
|
99 <dd> |
|
100 current text of the edit (string) |
|
101 </dd> |
|
102 </dl><a NAME="CookiesExceptionsDialog.setDomainName" ID="CookiesExceptionsDialog.setDomainName"></a> |
|
103 <h4>CookiesExceptionsDialog.setDomainName</h4> |
|
104 <b>setDomainName</b>(<i>domain</i>) |
|
105 <p> |
|
106 Public method to set the domain to be displayed. |
|
107 </p><dl> |
|
108 <dt><i>domain</i></dt> |
|
109 <dd> |
|
110 domain name to be displayed (string or QString) |
|
111 </dd> |
|
112 </dl> |
|
113 <div align="right"><a href="#top">Up</a></div> |
|
114 <hr /> |
|
115 </body></html> |