當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。