283 |
283 |
284 def setImageUrl(self, imageUrl): |
284 def setImageUrl(self, imageUrl): |
285 """ |
285 """ |
286 Public method to set the engine image URL. |
286 Public method to set the engine image URL. |
287 |
287 |
288 @param description image URL of the engine (string) |
288 @param imageUrl image URL of the engine (string) |
289 """ |
289 """ |
290 self._imageUrl = imageUrl |
290 self._imageUrl = imageUrl |
291 |
291 |
292 def setImageUrlAndLoad(self, imageUrl): |
292 def setImageUrlAndLoad(self, imageUrl): |
293 """ |
293 """ |
294 Public method to set the engine image URL. |
294 Public method to set the engine image URL. |
295 |
295 |
296 @param description image URL of the engine (string) |
296 @param imageUrl image URL of the engine (string) |
297 """ |
297 """ |
298 self.setImageUrl(imageUrl) |
298 self.setImageUrl(imageUrl) |
299 self.__iconMoved = False |
299 self.__iconMoved = False |
300 self.loadImage() |
300 self.loadImage() |
301 |
301 |