723 # set the keyboard input interval |
723 # set the keyboard input interval |
724 interval = Preferences.getUI("KeyboardInputInterval") |
724 interval = Preferences.getUI("KeyboardInputInterval") |
725 if interval > 0: |
725 if interval > 0: |
726 QApplication.setKeyboardInputInterval(interval) |
726 QApplication.setKeyboardInputInterval(interval) |
727 |
727 |
|
728 def networkAccessManager(self): |
|
729 """ |
|
730 Public method to get a reference to the network access manager object. |
|
731 |
|
732 @return reference to the network access manager object |
|
733 @rtype QNetworkAccessManager |
|
734 """ |
|
735 return self.__networkManager |
|
736 |
728 def __createLayout(self, debugServer): |
737 def __createLayout(self, debugServer): |
729 """ |
738 """ |
730 Private method to create the layout of the various windows. |
739 Private method to create the layout of the various windows. |
731 |
740 |
732 @param debugServer reference to the debug server object |
741 @param debugServer reference to the debug server object |