|
1 <!DOCTYPE html> |
|
2 <html><head> |
|
3 <title>eric7.WebBrowser.UrlBar.StackedUrlBar</title> |
|
4 <meta charset="UTF-8"> |
|
5 <link rel="stylesheet" href="styles.css"> |
|
6 </head> |
|
7 <body> |
|
8 <a NAME="top" ID="top"></a> |
|
9 <h1>eric7.WebBrowser.UrlBar.StackedUrlBar</h1> |
|
10 |
|
11 <p> |
|
12 Module implementing a widget to stack url bars. |
|
13 </p> |
|
14 <h3>Global Attributes</h3> |
|
15 |
|
16 <table> |
|
17 <tr><td>None</td></tr> |
|
18 </table> |
|
19 <h3>Classes</h3> |
|
20 |
|
21 <table> |
|
22 |
|
23 <tr> |
|
24 <td><a href="#StackedUrlBar">StackedUrlBar</a></td> |
|
25 <td>Class implementing a widget to stack URL bars.</td> |
|
26 </tr> |
|
27 </table> |
|
28 <h3>Functions</h3> |
|
29 |
|
30 <table> |
|
31 <tr><td>None</td></tr> |
|
32 </table> |
|
33 <hr /> |
|
34 <hr /> |
|
35 <a NAME="StackedUrlBar" ID="StackedUrlBar"></a> |
|
36 <h2>StackedUrlBar</h2> |
|
37 |
|
38 <p> |
|
39 Class implementing a widget to stack URL bars. |
|
40 </p> |
|
41 <h3>Derived from</h3> |
|
42 QStackedWidget |
|
43 <h3>Class Attributes</h3> |
|
44 |
|
45 <table> |
|
46 <tr><td>None</td></tr> |
|
47 </table> |
|
48 <h3>Class Methods</h3> |
|
49 |
|
50 <table> |
|
51 <tr><td>None</td></tr> |
|
52 </table> |
|
53 <h3>Methods</h3> |
|
54 |
|
55 <table> |
|
56 |
|
57 <tr> |
|
58 <td><a href="#StackedUrlBar.__init__">StackedUrlBar</a></td> |
|
59 <td>Constructor</td> |
|
60 </tr> |
|
61 <tr> |
|
62 <td><a href="#StackedUrlBar.currentUrlBar">currentUrlBar</a></td> |
|
63 <td>Public method to get a reference to the current URL bar.</td> |
|
64 </tr> |
|
65 <tr> |
|
66 <td><a href="#StackedUrlBar.moveBar">moveBar</a></td> |
|
67 <td>Public slot to move an URL bar.</td> |
|
68 </tr> |
|
69 <tr> |
|
70 <td><a href="#StackedUrlBar.urlBar">urlBar</a></td> |
|
71 <td>Public method to get a reference to the URL bar for a given index.</td> |
|
72 </tr> |
|
73 <tr> |
|
74 <td><a href="#StackedUrlBar.urlBars">urlBars</a></td> |
|
75 <td>Public method to get a list of references to all URL bars.</td> |
|
76 </tr> |
|
77 </table> |
|
78 <h3>Static Methods</h3> |
|
79 |
|
80 <table> |
|
81 <tr><td>None</td></tr> |
|
82 </table> |
|
83 |
|
84 <a NAME="StackedUrlBar.__init__" ID="StackedUrlBar.__init__"></a> |
|
85 <h4>StackedUrlBar (Constructor)</h4> |
|
86 <b>StackedUrlBar</b>(<i>parent=None</i>) |
|
87 |
|
88 <p> |
|
89 Constructor |
|
90 </p> |
|
91 <dl> |
|
92 |
|
93 <dt><i>parent</i></dt> |
|
94 <dd> |
|
95 reference to the parent widget (QWidget) |
|
96 </dd> |
|
97 </dl> |
|
98 <a NAME="StackedUrlBar.currentUrlBar" ID="StackedUrlBar.currentUrlBar"></a> |
|
99 <h4>StackedUrlBar.currentUrlBar</h4> |
|
100 <b>currentUrlBar</b>(<i></i>) |
|
101 |
|
102 <p> |
|
103 Public method to get a reference to the current URL bar. |
|
104 </p> |
|
105 <dl> |
|
106 <dt>Return:</dt> |
|
107 <dd> |
|
108 reference to the current URL bar (UrlBar) |
|
109 </dd> |
|
110 </dl> |
|
111 <a NAME="StackedUrlBar.moveBar" ID="StackedUrlBar.moveBar"></a> |
|
112 <h4>StackedUrlBar.moveBar</h4> |
|
113 <b>moveBar</b>(<i>from_, to_</i>) |
|
114 |
|
115 <p> |
|
116 Public slot to move an URL bar. |
|
117 </p> |
|
118 <dl> |
|
119 |
|
120 <dt><i>from_</i></dt> |
|
121 <dd> |
|
122 index of URL bar to be moved (integer) |
|
123 </dd> |
|
124 <dt><i>to_</i></dt> |
|
125 <dd> |
|
126 index to move the URL bar to (integer) |
|
127 </dd> |
|
128 </dl> |
|
129 <a NAME="StackedUrlBar.urlBar" ID="StackedUrlBar.urlBar"></a> |
|
130 <h4>StackedUrlBar.urlBar</h4> |
|
131 <b>urlBar</b>(<i>index</i>) |
|
132 |
|
133 <p> |
|
134 Public method to get a reference to the URL bar for a given index. |
|
135 </p> |
|
136 <dl> |
|
137 |
|
138 <dt><i>index</i></dt> |
|
139 <dd> |
|
140 index of the url bar (integer) |
|
141 </dd> |
|
142 </dl> |
|
143 <dl> |
|
144 <dt>Return:</dt> |
|
145 <dd> |
|
146 reference to the URL bar for the given index (UrlBar) |
|
147 </dd> |
|
148 </dl> |
|
149 <a NAME="StackedUrlBar.urlBars" ID="StackedUrlBar.urlBars"></a> |
|
150 <h4>StackedUrlBar.urlBars</h4> |
|
151 <b>urlBars</b>(<i></i>) |
|
152 |
|
153 <p> |
|
154 Public method to get a list of references to all URL bars. |
|
155 </p> |
|
156 <dl> |
|
157 <dt>Return:</dt> |
|
158 <dd> |
|
159 list of references to URL bars (list of UrlBar) |
|
160 </dd> |
|
161 </dl> |
|
162 <div align="right"><a href="#top">Up</a></div> |
|
163 <hr /> |
|
164 </body></html> |