eric7/Documentation/Source/eric7.WebBrowser.Session.SessionManagerDialog.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.WebBrowser.Session.SessionManagerDialog</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.WebBrowser.Session.SessionManagerDialog</h1>
24
25 <p>
26 Module implementing a dialog to manage sessions.
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="#SessionManagerDialog">SessionManagerDialog</a></td>
39 <td>Class implementing a dialog to manage sessions.</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="SessionManagerDialog" ID="SessionManagerDialog"></a>
50 <h2>SessionManagerDialog</h2>
51
52 <p>
53 Class implementing a dialog to manage sessions.
54 </p>
55 <h3>Derived from</h3>
56 QDialog, Ui_SessionManagerDialog
57 <h3>Class Attributes</h3>
58
59 <table>
60 <tr><td>ActiveSessionRole</td></tr><tr><td>BackupSessionRole</td></tr><tr><td>DefaultSessionRole</td></tr><tr><td>SessionFileRole</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="#SessionManagerDialog.__init__">SessionManagerDialog</a></td>
73 <td>Constructor</td>
74 </tr>
75 <tr>
76 <td><a href="#SessionManagerDialog.__cloneSession">__cloneSession</a></td>
77 <td>Private slot to clone the selected session.</td>
78 </tr>
79 <tr>
80 <td><a href="#SessionManagerDialog.__deleteSession">__deleteSession</a></td>
81 <td>Private slot to delete the selected session.</td>
82 </tr>
83 <tr>
84 <td><a href="#SessionManagerDialog.__newSession">__newSession</a></td>
85 <td>Private slot to create a new session.</td>
86 </tr>
87 <tr>
88 <td><a href="#SessionManagerDialog.__refresh">__refresh</a></td>
89 <td>Private slot to refresh the list of sessions.</td>
90 </tr>
91 <tr>
92 <td><a href="#SessionManagerDialog.__renameSession">__renameSession</a></td>
93 <td>Private slot to rename the selected session.</td>
94 </tr>
95 <tr>
96 <td><a href="#SessionManagerDialog.__resizeViewHeader">__resizeViewHeader</a></td>
97 <td>Private method to resize the session column of the list.</td>
98 </tr>
99 <tr>
100 <td><a href="#SessionManagerDialog.__switchToSession">__switchToSession</a></td>
101 <td>Private slot to switch to the selected session.</td>
102 </tr>
103 <tr>
104 <td><a href="#SessionManagerDialog.__updateButtons">__updateButtons</a></td>
105 <td>Private method to update the button state.</td>
106 </tr>
107 <tr>
108 <td><a href="#SessionManagerDialog.__updateSessionItem">__updateSessionItem</a></td>
109 <td>Private method to set various item properties.</td>
110 </tr>
111 <tr>
112 <td><a href="#SessionManagerDialog.resizeEvent">resizeEvent</a></td>
113 <td>Protected method handling the dialog being resized.</td>
114 </tr>
115 <tr>
116 <td><a href="#SessionManagerDialog.showEvent">showEvent</a></td>
117 <td>Protected method handling the dialog being shown.</td>
118 </tr>
119 </table>
120 <h3>Static Methods</h3>
121
122 <table>
123 <tr><td>None</td></tr>
124 </table>
125
126 <a NAME="SessionManagerDialog.__init__" ID="SessionManagerDialog.__init__"></a>
127 <h4>SessionManagerDialog (Constructor)</h4>
128 <b>SessionManagerDialog</b>(<i>parent=None</i>)
129
130 <p>
131 Constructor
132 </p>
133 <dl>
134
135 <dt><i>parent</i> (QWidget)</dt>
136 <dd>
137 reference to the parent widget
138 </dd>
139 </dl>
140 <a NAME="SessionManagerDialog.__cloneSession" ID="SessionManagerDialog.__cloneSession"></a>
141 <h4>SessionManagerDialog.__cloneSession</h4>
142 <b>__cloneSession</b>(<i></i>)
143
144 <p>
145 Private slot to clone the selected session.
146 </p>
147 <a NAME="SessionManagerDialog.__deleteSession" ID="SessionManagerDialog.__deleteSession"></a>
148 <h4>SessionManagerDialog.__deleteSession</h4>
149 <b>__deleteSession</b>(<i></i>)
150
151 <p>
152 Private slot to delete the selected session.
153 </p>
154 <a NAME="SessionManagerDialog.__newSession" ID="SessionManagerDialog.__newSession"></a>
155 <h4>SessionManagerDialog.__newSession</h4>
156 <b>__newSession</b>(<i></i>)
157
158 <p>
159 Private slot to create a new session.
160 </p>
161 <a NAME="SessionManagerDialog.__refresh" ID="SessionManagerDialog.__refresh"></a>
162 <h4>SessionManagerDialog.__refresh</h4>
163 <b>__refresh</b>(<i></i>)
164
165 <p>
166 Private slot to refresh the list of sessions.
167 </p>
168 <a NAME="SessionManagerDialog.__renameSession" ID="SessionManagerDialog.__renameSession"></a>
169 <h4>SessionManagerDialog.__renameSession</h4>
170 <b>__renameSession</b>(<i></i>)
171
172 <p>
173 Private slot to rename the selected session.
174 </p>
175 <a NAME="SessionManagerDialog.__resizeViewHeader" ID="SessionManagerDialog.__resizeViewHeader"></a>
176 <h4>SessionManagerDialog.__resizeViewHeader</h4>
177 <b>__resizeViewHeader</b>(<i></i>)
178
179 <p>
180 Private method to resize the session column of the list.
181 </p>
182 <a NAME="SessionManagerDialog.__switchToSession" ID="SessionManagerDialog.__switchToSession"></a>
183 <h4>SessionManagerDialog.__switchToSession</h4>
184 <b>__switchToSession</b>(<i></i>)
185
186 <p>
187 Private slot to switch to the selected session.
188 </p>
189 <a NAME="SessionManagerDialog.__updateButtons" ID="SessionManagerDialog.__updateButtons"></a>
190 <h4>SessionManagerDialog.__updateButtons</h4>
191 <b>__updateButtons</b>(<i></i>)
192
193 <p>
194 Private method to update the button state.
195 </p>
196 <a NAME="SessionManagerDialog.__updateSessionItem" ID="SessionManagerDialog.__updateSessionItem"></a>
197 <h4>SessionManagerDialog.__updateSessionItem</h4>
198 <b>__updateSessionItem</b>(<i>itm</i>)
199
200 <p>
201 Private method to set various item properties.
202 </p>
203 <dl>
204
205 <dt><i>itm</i> (QTreeWidgetItem)</dt>
206 <dd>
207 reference to the item to be updated
208 </dd>
209 </dl>
210 <a NAME="SessionManagerDialog.resizeEvent" ID="SessionManagerDialog.resizeEvent"></a>
211 <h4>SessionManagerDialog.resizeEvent</h4>
212 <b>resizeEvent</b>(<i>evt</i>)
213
214 <p>
215 Protected method handling the dialog being resized.
216 </p>
217 <dl>
218
219 <dt><i>evt</i> (QResizeEvent)</dt>
220 <dd>
221 reference to the event object
222 </dd>
223 </dl>
224 <a NAME="SessionManagerDialog.showEvent" ID="SessionManagerDialog.showEvent"></a>
225 <h4>SessionManagerDialog.showEvent</h4>
226 <b>showEvent</b>(<i>evt</i>)
227
228 <p>
229 Protected method handling the dialog being shown.
230 </p>
231 <dl>
232
233 <dt><i>evt</i> (QShowEvent)</dt>
234 <dd>
235 reference to the event object
236 </dd>
237 </dl>
238 <div align="right"><a href="#top">Up</a></div>
239 <hr />
240 </body></html>

eric ide

mercurial