677 |
677 |
678 class E5PathPicker(E5PathPickerBase): |
678 class E5PathPicker(E5PathPickerBase): |
679 """ |
679 """ |
680 Class implementing a path picker widget consisting of a line edit and a |
680 Class implementing a path picker widget consisting of a line edit and a |
681 tool button to open a file dialog. |
681 tool button to open a file dialog. |
682 |
|
683 @signal textChanged(path) emitted when the entered path has changed |
|
684 @signal pathSelected(path) emitted after a path has been selected via the |
|
685 file dialog |
|
686 @signal aboutToShowPathPickerDialog emitted before the file dialog is shown |
|
687 @signal pickerButtonClicked emitted when the picker button was pressed and |
|
688 the widget mode is custom |
|
689 """ |
682 """ |
690 def __init__(self, parent=None): |
683 def __init__(self, parent=None): |
691 """ |
684 """ |
692 Constructor |
685 Constructor |
693 |
686 |
699 |
692 |
700 class E5ComboPathPicker(E5PathPickerBase): |
693 class E5ComboPathPicker(E5PathPickerBase): |
701 """ |
694 """ |
702 Class implementing a path picker widget consisting of a combobox and a |
695 Class implementing a path picker widget consisting of a combobox and a |
703 tool button to open a file dialog. |
696 tool button to open a file dialog. |
704 |
|
705 @signal editTextChanged(path) emitted when the entered path has changed |
|
706 @signal pathSelected(path) emitted after a path has been selected via the |
|
707 file dialog |
|
708 @signal aboutToShowPathPickerDialog emitted before the file dialog is shown |
|
709 @signal pickerButtonClicked emitted when the picker button was pressed and |
|
710 the widget mode is custom |
|
711 """ |
697 """ |
712 def __init__(self, parent=None): |
698 def __init__(self, parent=None): |
713 """ |
699 """ |
714 Constructor |
700 Constructor |
715 |
701 |