711 |
711 |
712 @param parent reference to the parent widget |
712 @param parent reference to the parent widget |
713 @type QWidget |
713 @type QWidget |
714 """ |
714 """ |
715 super(E5ComboPathPicker, self).__init__(parent, useLineEdit=False) |
715 super(E5ComboPathPicker, self).__init__(parent, useLineEdit=False) |
|
716 |
|
717 def getPathItems(self): |
|
718 """ |
|
719 Public method to get the list of remembered paths. |
|
720 |
|
721 @return list od remembered paths |
|
722 @rtype list of str |
|
723 """ |
|
724 paths = [] |
|
725 for index in range(self._editor.count()): |
|
726 paths.append(self._editor.itemText(index)) |
|
727 return paths |