本文整理汇总了Python中wx.FD_MULTIPLE属性的典型用法代码示例。如果您正苦于以下问题:Python wx.FD_MULTIPLE属性的具体用法?Python wx.FD_MULTIPLE怎么用?Python wx.FD_MULTIPLE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类wx
的用法示例。
在下文中一共展示了wx.FD_MULTIPLE属性的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: launchFileDialog
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def launchFileDialog(self, evt):
# defining wildcard for suppported picture formats
wildcard = "JPEG (*.jpg)|*.jpg|" \
"PNG (*.png)|*.png|" \
"GIF (*.gif)|*.gif"
# defining the dialog object
dialog = wx.FileDialog(self, message="Select Picture", defaultDir=os.getcwd(), defaultFile="",
wildcard=wildcard,
style=wx.FD_OPEN | wx.FD_MULTIPLE | wx.FD_CHANGE_DIR | wx.FD_FILE_MUST_EXIST | wx.FD_PREVIEW)
# Function to retrieve file dialog response and return the full path of the first image (it is a multi-file selection dialog)
if dialog.ShowModal() == wx.ID_OK:
self.magic_collection[1].SetValue(
"You have selected a Picture. It will now be processed!, Please wait! \nLoading.....")
paths = dialog.GetPaths()
# This adds the selected picture to the Right region. Right region object is retrieved from UI object array
modification_bitmap1 = wx.Bitmap(paths[0])
modification_image1 = modification_bitmap1.ConvertToImage()
modification_image1 = modification_image1.Scale(650, 490, wx.IMAGE_QUALITY_HIGH)
modification_bitmap2 = modification_image1.ConvertToBitmap()
report_bitmap = wx.StaticBitmap(self.magic_collection[0], -1, modification_bitmap2, (0, 20))
self.processPicture(paths[0],
"PROGRAM_INSTALL_FULLPATH\\resnet50_weights_tf_dim_ordering_tf_kernels.h5",
"PROGRAM_INSTALL_FULLPATH\\imagenet_class_index.json")
示例2: launchFileDialog
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def launchFileDialog(self, evt):
# defining wildcard for suppported picture formats
wildcard = "JPEG (*.jpg)|*.jpg|" \
"PNG (*.png)|*.png|" \
"GIF (*.gif)|*.gif"
# defining the dialog object
dialog = wx.FileDialog(self, message="Select Picture", defaultDir=os.getcwd(), defaultFile="",
wildcard=wildcard,
style=wx.FD_OPEN | wx.FD_MULTIPLE | wx.FD_CHANGE_DIR | wx.FD_FILE_MUST_EXIST | wx.FD_PREVIEW)
# Function to retrieve file dialog response and return the full path of the first image (it is a multi-file selection dialog)
if dialog.ShowModal() == wx.ID_OK:
self.magic_collection[1].SetValue(
"You have selected a Picture. It will now be processed!, Please wait! \nLoading.....")
paths = dialog.GetPaths()
# This adds the selected picture to the Right region. Right region object is retrieved from UI object array
modification_bitmap1 = wx.Bitmap(paths[0])
modification_image1 = modification_bitmap1.ConvertToImage()
modification_image1 = modification_image1.Scale(650, 490, wx.IMAGE_QUALITY_HIGH)
modification_bitmap2 = modification_image1.ConvertToBitmap()
report_bitmap = wx.StaticBitmap(self.magic_collection[0], -1, modification_bitmap2, (0, 20))
self.processPicture(paths[0],
"PROGRAM_INSTALL_FULLPATH\\squeezenet_weights_tf_dim_ordering_tf_kernels.h5",
"PROGRAM_INSTALL_FULLPATH\\imagenet_class_index.json")
示例3: launchFileDialog
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def launchFileDialog(self, evt):
# defining wildcard for suppported picture formats
wildcard = "JPEG (*.jpg)|*.jpg|" \
"PNG (*.png)|*.png|" \
"GIF (*.gif)|*.gif"
# defining the dialog object
dialog = wx.FileDialog(self, message="Select Picture", defaultDir=os.getcwd(), defaultFile="",
wildcard=wildcard,
style=wx.FD_OPEN | wx.FD_MULTIPLE | wx.FD_CHANGE_DIR | wx.FD_FILE_MUST_EXIST | wx.FD_PREVIEW)
# Function to retrieve file dialog response and return the full path of the first image (it is a multi-file selection dialog)
if dialog.ShowModal() == wx.ID_OK:
self.magic_collection[1].SetValue(
"You have selected a Picture. It will now be processed!, Please wait! \nLoading.....")
paths = dialog.GetPaths()
# This adds the selected picture to the Right region. Right region object is retrieved from UI object array
modification_bitmap1 = wx.Bitmap(paths[0])
modification_image1 = modification_bitmap1.ConvertToImage()
modification_image1 = modification_image1.Scale(650, 490, wx.IMAGE_QUALITY_HIGH)
modification_bitmap2 = modification_image1.ConvertToBitmap()
report_bitmap = wx.StaticBitmap(self.magic_collection[0], -1, modification_bitmap2, (0, 20))
self.processPicture(paths[0],
"PROGRAM_INSTALL_FULLPATH\\DenseNet-BC-121-32.h5",
"PROGRAM_INSTALL_FULLPATH\\imagenet_class_index.json")
示例4: launchFileDialog
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def launchFileDialog(self, evt):
# defining wildcard for suppported picture formats
wildcard = "JPEG (*.jpg)|*.jpg|" \
"PNG (*.png)|*.png|" \
"GIF (*.gif)|*.gif"
# defining the dialog object
dialog = wx.FileDialog(self, message="Select Picture", defaultDir=os.getcwd(), defaultFile="",
wildcard=wildcard,
style=wx.FD_OPEN | wx.FD_MULTIPLE | wx.FD_CHANGE_DIR | wx.FD_FILE_MUST_EXIST | wx.FD_PREVIEW)
# Function to retrieve file dialog response and return the full path of the first image (it is a multi-file selection dialog)
if dialog.ShowModal() == wx.ID_OK:
self.magic_collection[1].SetValue(
"You have selected a Picture. It will now be processed!, Please wait! \nLoading.....")
paths = dialog.GetPaths()
# This adds the selected picture to the Right region. Right region object is retrieved from UI object array
modification_bitmap1 = wx.Bitmap(paths[0])
modification_image1 = modification_bitmap1.ConvertToImage()
modification_image1 = modification_image1.Scale(650, 490, wx.IMAGE_QUALITY_HIGH)
modification_bitmap2 = modification_image1.ConvertToBitmap()
report_bitmap = wx.StaticBitmap(self.magic_collection[0], -1, modification_bitmap2, (0, 20))
self.processPicture(paths[0],
"PROGRAM_INSTALL_FULLPATH\\inception_v3_weights_tf_dim_ordering_tf_kernels.h5",
"PROGRAM_INSTALL_FULLPATH\\imagenet_class_index.json")
示例5: select_file
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def select_file(self):
style = wx.FD_OPEN | wx.FD_FILE_MUST_EXIST | wx.FD_MULTIPLE
#dialog = wx.DirDialog(top, 'Please select a directory containing archive files (WARC or ARC)', style=style)
dialog = wx.FileDialog(parent=self,
message='Please select a web archive (WARC or ARC) file',
wildcard='WARC or ARC (*.gz; *.warc; *.arc)|*.gz;*.warc;*.arc',
#wildcard='WARC or ARC (*.gz; *.warc; *.arc)|*.gz; *.warc; *.arc',
style=style)
if dialog.ShowModal() == wx.ID_OK:
paths = dialog.GetPaths()
else:
paths = None
dialog.Destroy()
return paths
#=================================================================
示例6: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def __init__(self, *args, **kwargs):
BaseMultiFileChooser.__init__(self, build_dialog(wx.FD_MULTIPLE, False))
示例7: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def __init__(self, parent):
wx.Frame.__init__(self, parent, title="test", size=(320, 240))
self.SetBackgroundColour('#ffffff')
sizer = wx.BoxSizer(wx.VERTICAL)
f = wx.FileDialog(self, style=wx.FD_MULTIPLE | wx.FD_FILE_MUST_EXIST)
sizer.Add(f, 0, wx.EXPAND)
self.SetSizer(sizer)
示例8: getDialog
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def getDialog(self):
options = self.Parent._options
return wx.FileDialog(self, message=options.get('message', _('open_files')),
style=wx.FD_OPEN | wx.FD_FILE_MUST_EXIST | wx.FD_MULTIPLE,
defaultFile=options.get('default_file', _("enter_filename")),
defaultDir=options.get('default_dir', _('')),
wildcard=options.get('wildcard', wx.FileSelectorDefaultWildcardStr))
示例9: select_new_videos
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def select_new_videos(self, event):
"""
Selects the videos from the directory
"""
cwd = os.getcwd()
dlg = wx.FileDialog(
self, "Select new videos to load", cwd, "", "*.*", wx.FD_MULTIPLE
)
if dlg.ShowModal() == wx.ID_OK:
self.addvids = dlg.GetPaths()
self.filelistnew = self.filelistnew + self.addvids
self.sel_vids_new.SetLabel(
"Total %s Videos selected" % len(self.filelistnew)
)
示例10: select_videos
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def select_videos(self, event):
"""
Selects the videos from the directory
"""
cwd = os.getcwd()
dlg = wx.FileDialog(
self, "Select videos to add to the project", cwd, "", "*.*", wx.FD_MULTIPLE
)
if dlg.ShowModal() == wx.ID_OK:
self.vids = dlg.GetPaths()
self.filelist = self.filelist + self.vids
self.sel_vids.SetLabel("Total %s Videos selected" % len(self.filelist))
示例11: select_videos
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def select_videos(self, event):
"""
Selects the videos from the directory
"""
cwd = os.getcwd()
dlg = wx.FileDialog(
self, "Select videos to analyze", cwd, "", "*.*", wx.FD_MULTIPLE
)
if dlg.ShowModal() == wx.ID_OK:
self.vids = dlg.GetPaths()
self.filelist = self.filelist + self.vids
self.sel_vids.SetLabel("Total %s Videos selected" % len(self.filelist))
示例12: select_videos
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FD_MULTIPLE [as 别名]
def select_videos(self, event):
"""
Selects the videos from the directory
"""
cwd = os.getcwd()
dlg = wx.FileDialog(
self, "Select video to modify", cwd, "", "*.*", wx.FD_MULTIPLE
)
if dlg.ShowModal() == wx.ID_OK:
self.vids = dlg.GetPaths()
self.filelist = self.filelist + self.vids # [0]
self.sel_vids.SetLabel("%s Video selected" % len(self.filelist))