当前位置: 首页>>代码示例>>Python>>正文


Python wx.FileDropTarget方法代码示例

本文整理汇总了Python中wx.FileDropTarget方法的典型用法代码示例。如果您正苦于以下问题:Python wx.FileDropTarget方法的具体用法?Python wx.FileDropTarget怎么用?Python wx.FileDropTarget使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wx的用法示例。


在下文中一共展示了wx.FileDropTarget方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: import wx [as 别名]
# 或者: from wx import FileDropTarget [as 别名]
def __init__(self, *args, **kwargs):
        wx.Panel.__init__(self, *args, **kwargs)

        # This is used to determine if a file dialog is open or not.
        self.prev_file_path = ''

        # Textbox for input file
        self.text_ctrl = wx.TextCtrl(self, wx.ID_ANY, '')
        self.text_ctrl.Bind(wx.EVT_TEXT, self.on_text_input)
        self.button = wx.Button(self, wx.ID_ANY, _('Browse'))
        self.button.Bind(wx.EVT_BUTTON, self.on_button_click)

        # Drag and drop
        drop_target = FileDropTarget(self)
        self.text_ctrl.SetDropTarget(drop_target)

        top_sizer = wx.BoxSizer(wx.HORIZONTAL)
        top_sizer.Add(self.text_ctrl, proportion=1)
        top_sizer.Add(self.button)

        self.SetSizer(top_sizer) 
开发者ID:hasegaw,项目名称:IkaLog,代码行数:23,代码来源:preview.py

示例2: on_button_click

# 需要导入模块: import wx [as 别名]
# 或者: from wx import FileDropTarget [as 别名]
def on_button_click(self, event):
        file_path = self.text_ctrl.GetValue()
        if self.should_open_file(file_path):
            evt = InputFileAddedEvent(input_file=file_path)
            wx.PostEvent(self, evt)
            self.prev_file_path = file_path
            self.update_button_label()
            return

        # file_path is invalid. Open a file dialog.
        file_dialog = wx.FileDialog(self, _('Select a video file'))
        if file_dialog.ShowModal() != wx.ID_OK:
            return
        file_path = file_dialog.GetPath()
        self.text_ctrl.SetValue(file_path)


    # Callback from wx.FileDropTarget.OnDropFiles 
开发者ID:hasegaw,项目名称:IkaLog,代码行数:20,代码来源:preview.py

示例3: __init__

# 需要导入模块: import wx [as 别名]
# 或者: from wx import FileDropTarget [as 别名]
def __init__(self, window):
    wx.FileDropTarget.__init__(self)
    self.window = window 
开发者ID:ME-ICA,项目名称:me-ica,代码行数:5,代码来源:filedrop.py

示例4: __init__

# 需要导入模块: import wx [as 别名]
# 或者: from wx import FileDropTarget [as 别名]
def __init__(self, window, callback):
        wx.FileDropTarget.__init__(self)
        self.window = window
        self.callback = callback 
开发者ID:kenorb-contrib,项目名称:BitTorrent,代码行数:6,代码来源:DropTarget.py

示例5: __init__

# 需要导入模块: import wx [as 别名]
# 或者: from wx import FileDropTarget [as 别名]
def __init__(self, parent):
        wx.FileDropTarget.__init__(self)
        self.parent = parent 
开发者ID:wxGlade,项目名称:wxGlade,代码行数:5,代码来源:main.py

示例6: OnDragOver

# 需要导入模块: import wx [as 别名]
# 或者: from wx import FileDropTarget [as 别名]
def OnDragOver(self, x, y, defResult):
            x0,y0 = self.parent.GetClientAreaOrigin()
            screen_xy = self.parent.ClientToScreen( (x-x0,y-y0) )
            ctrl = wx.FindWindowAtPoint( screen_xy )
            print("DragOver", x0,y0, x-x0,y-y0, ctrl)
            return wx.FileDropTarget.OnDragOver(self, x,y, defResult) 
开发者ID:wxGlade,项目名称:wxGlade,代码行数:8,代码来源:main.py


注:本文中的wx.FileDropTarget方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。