Implements a layout with a finder as well a surrounding elements. It can
be configured using class configuration variables, and allows easy modification
through derivation
|
|
|
__init__(self,
*args,
**kwargs)
Initialize all ui elements
:param kwargs: The following keywords are defined
* **defaultRoots**: default False, if True, show all roots available
on the system. |
source code
|
|
|
|
|
|
|
_create_button_layout(self)
Create a layout with two main buttons, one to confirm, the other
to cancel the operation
:return: parent layout containing the buttons |
source code
|
|
|
|
|
_close_parent_window(self)
helper routine closing the parent window if there is one |
source code
|
|
|
_confirm_button_pressed(self,
*args)
Called when the ok button was pressed to finalize the operation |
source code
|
|
|
|
|
|
|
|
|
|
|
|