2085 |
2085 |
2086 def __addSpeedDial(self): |
2086 def __addSpeedDial(self): |
2087 """ |
2087 """ |
2088 Private slot to add a new speed dial. |
2088 Private slot to add a new speed dial. |
2089 """ |
2089 """ |
2090 self.__page.runJavaScript("addSpeedDial();", WebBrowserPage.SafeJsWorld) |
2090 self.__page.runJavaScript("addSpeedDial();", WebBrowserPage.UnsafeJsWorld) |
2091 |
2091 |
2092 def __configureSpeedDial(self): |
2092 def __configureSpeedDial(self): |
2093 """ |
2093 """ |
2094 Private slot to configure the speed dial. |
2094 Private slot to configure the speed dial. |
2095 """ |
2095 """ |
2096 self.page().runJavaScript("configureSpeedDial();", WebBrowserPage.SafeJsWorld) |
2096 self.page().runJavaScript("configureSpeedDial();", WebBrowserPage.UnsafeJsWorld) |
2097 |
2097 |
2098 def __reloadAllSpeedDials(self): |
2098 def __reloadAllSpeedDials(self): |
2099 """ |
2099 """ |
2100 Private slot to reload all speed dials. |
2100 Private slot to reload all speed dials. |
2101 """ |
2101 """ |
2102 self.page().runJavaScript("reloadAll();", WebBrowserPage.SafeJsWorld) |
2102 self.page().runJavaScript("reloadAll();", WebBrowserPage.UnsafeJsWorld) |
2103 |
2103 |
2104 def __resetSpeedDials(self): |
2104 def __resetSpeedDials(self): |
2105 """ |
2105 """ |
2106 Private slot to reset all speed dials to the default pages. |
2106 Private slot to reset all speed dials to the default pages. |
2107 """ |
2107 """ |