Module albow.dialog.LookForFileDialog
Source code
import os
from albow.dialog.FileOpenDialog import FileOpenDialog
class LookForFileDialog(FileOpenDialog):
target = None
def __init__(self, target, **kwds):
super().__init__(**kwds)
self.target = target
def item_is_choosable(self, path):
return path and os.path.basename(path) == self.target
def filter(self, name):
return name and os.path.basename(name) == self.target
Classes
class LookForFileDialog (target, **kwds)
-
The Dialog class provides a convenient container for implementing modal dialogs. Pressing Return or Enter dismisses the dialog with the value True, and pressing Escape dismisses it with the value False.
See the
albow.core.ui.Widget
dismiss()
andpresent()
methodsArgs
client
- The widget the dialog is on top of
responses
- A list of responses
default
- The index to the default response; Default is the first
cancel
- The index to the cancel response; Default is None
**kwds:
Source code
class LookForFileDialog(FileOpenDialog): target = None def __init__(self, target, **kwds): super().__init__(**kwds) self.target = target def item_is_choosable(self, path): return path and os.path.basename(path) == self.target def filter(self, name): return name and os.path.basename(name) == self.target
Ancestors
Class variables
var target
Methods
def filter(self, name)
-
Source code
def filter(self, name): return name and os.path.basename(name) == self.target
def item_is_choosable(self, path)
-
Source code
def item_is_choosable(self, path): return path and os.path.basename(path) == self.target
Inherited members
FileOpenDialog
:add
add_anchor
add_centered
anchor
attention_lost
augment_mouse_event
bg_color
bg_image
border_color
border_width
call_handler
call_parent_handler
cancel_response
click_outside_response
defer_drawing
dismiss
draw
draw_over
enter_response
fg_color
focus
focus_switch
font
get_cursor
get_focus
get_margin_rect
get_root
get_top_widget
get_visible
global_to_local
has_focus
inherited
invalidate
is_gl_container
key_down
key_up
local_to_global
margin
menu_bar
parent
parent_resized
present
rect
relative_mode
remove
remove_anchor
resized
scale_bg
sel_color
set_parent
set_size_for_text
tab_stop
up_button_text
visible