File: URLDragAndDrop.py

package info (click to toggle)
wxwindows2.4 2.4.5.1.1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 59,920 kB
  • ctags: 97,489
  • sloc: cpp: 610,307; ansic: 111,957; python: 103,357; makefile: 3,676; sh: 3,391; lex: 192; yacc: 128; xml: 95; pascal: 74
file content (132 lines) | stat: -rw-r--r-- 3,809 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132

from wxPython.wx import *

#----------------------------------------------------------------------

class MyURLDropTarget(wxPyDropTarget):
    def __init__(self, window):
        wxPyDropTarget.__init__(self)
        self.window = window

        self.data = wxURLDataObject();
        self.SetDataObject(self.data)

    def OnDragOver(self, x, y, d):
        return wxDragLink

    def OnData(self, x, y, d):
        if not self.GetData():
            return wxDragNone

        url = self.data.GetURL()
        self.window.AppendText(url + "\n")

        return d


#----------------------------------------------------------------------

class TestPanel(wxPanel):
    def __init__(self, parent, log):
        wxPanel.__init__(self, parent, -1)

        self.SetAutoLayout(True)
        outsideSizer = wxBoxSizer(wxVERTICAL)

        msg = "Drag-And-Drop of URLs"
        text = wxStaticText(self, -1, "", style=wxALIGN_CENTRE)
        text.SetFont(wxFont(24, wxSWISS, wxNORMAL, wxBOLD, False))
        text.SetLabel(msg)
        w,h = text.GetTextExtent(msg)
        text.SetSize(wxSize(w,h+1))
        text.SetForegroundColour(wxBLUE)
        outsideSizer.Add(text, 0, wxEXPAND|wxALL, 5)
        outsideSizer.Add(wxStaticLine(self, -1), 0, wxEXPAND)
        outsideSizer.Add(20,20)

        self.SetFont(wxFont(10, wxSWISS, wxNORMAL, wxBOLD, False))

        inSizer = wxFlexGridSizer(2, 2, 5, 5)
        inSizer.AddGrowableCol(0)

        inSizer.Add(20,20)
        inSizer.Add(20,20)
        inSizer.Add(wxStaticText(self, -1,
                                 "Drag URLs from your browser to\nthis window:",
                                 style = wxALIGN_RIGHT),
                    0, wxALIGN_RIGHT )
        self.dropText = wxTextCtrl(self, -1, "", size=(380, 180),
                                   style=wxTE_MULTILINE|wxTE_READONLY)
        inSizer.Add(self.dropText, 0, wxEXPAND)


        inSizer.Add(wxStaticText(self, -1,
                                 "Drag this URL to your browser:",
                                 style = wxALIGN_RIGHT),
                    0, wxALIGN_RIGHT )
        self.dragText = wxTextCtrl(self, -1, "http://wxPython.org/")
        inSizer.Add(self.dragText, 0, wxEXPAND)
        EVT_MOTION(self.dragText, self.OnStartDrag)


##         inSizer.Add(wxStaticText(self, -1,
##                                  "Drag this TEXT to your browser:",
##                                  style = wxALIGN_RIGHT),
##                     0, wxALIGN_RIGHT )
##         self.dragText2 = wxTextCtrl(self, -1, "http://wxPython.org/")
##         inSizer.Add(self.dragText2, 0, wxEXPAND)
##         EVT_MOTION(self.dragText2, self.OnStartDrag2)


        outsideSizer.Add(inSizer, 1, wxEXPAND)
        self.SetSizer(outsideSizer)


        self.dropText.SetDropTarget(MyURLDropTarget(self.dropText))



    def OnStartDrag(self, evt):
        if evt.Dragging():
            url = self.dragText.GetValue()
            data = wxURLDataObject()
            data.SetURL(url)

            dropSource = wxDropSource(self.dragText)
            dropSource.SetData(data)
            result = dropSource.DoDragDrop()


    def OnStartDrag2(self, evt):
        if evt.Dragging():
            url = self.dragText2.GetValue()
            data = wxTextDataObject()
            data.SetText(url)

            dropSource = wxDropSource(self.dragText2)
            dropSource.SetData(data)
            result = dropSource.DoDragDrop()


#----------------------------------------------------------------------

def runTest(frame, nb, log):
    win = TestPanel(nb, log)
    return win

#----------------------------------------------------------------------




overview = """\
"""




if __name__ == '__main__':
    import sys,os
    import run
    run.main(['', os.path.basename(sys.argv[0])])