summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DragAndDropManager_1.html
blob: 000c45aeb48f63491fd3e4600b5d6e2d763c5abf (plain)
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
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>qooxdoo &raquo; Demo</title>
  <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
  <!--[if IE]>
  <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
  <![endif]-->
  <script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
  <script type="text/javascript" src="../../script/layout.js"></script>

  <div id="demoDescription">
    <p>Test for drag&#38;drop implementation.</p>
    <p>Changing the action using the modifier keys (Shift, Alt, Control) might not work in Safari.</p>
  </div>

  <script type="text/javascript">
  qx.core.Init.getInstance().defineMain(function()
  {
    var d = qx.ui.core.ClientDocument.getInstance();
    
    var a1 = new qx.ui.basic.Atom("Drag Me");
    a1.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove });
    a1.setPadding(10);
    a1.setLocation(20, 48); 
    d.add(a1);

    
    function handleDragStart(e)
    {
      e.addData("text/plain", "Plain text");
      e.addData("text/html", "Some <strong>HTML</strong>");
      
      e.addAction("copy");
      e.addAction("move");
      e.addAction("alias");
      
      e.startDrag();
    };
    
    function handleDragDrop( e )
    {
      var type = e.getDropDataTypes()[0];
      var data = e.getData(type);
      
      this.debug("Drag&Drop Action: " + e.getAction());
  
      switch(type)
      {
        case "text/plain":
        case "text/html":
          this.setLabel(data);  
          break;
      };     
    };
    
    function handleDragOver(e) {
      e.getTarget().setBackgroundColor("#f2f2f2");    
    };
  
    function handleDragOut(e) {
      e.getTarget().setBackgroundColor("#fff");
    };
  
    function handleDragEnd(e)
    {
      // we don't need to do anything here
      // If we had a succesful move action we might have removed
      // the source here or something else
    };
    
    a1.addEventListener("dragstart", handleDragStart);
    
    
    
    
    var w1 = new qx.ui.basic.Atom("Drop to me");
    w1.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove, width: 100, height: 100, top: 100, left: 20, horizontalAlign: "center" });
    w1.setDropDataTypes(["text/html", "text/plain"]);
    w1.addEventListener("dragdrop", handleDragDrop);
    w1.addEventListener("dragover", handleDragOver);
    w1.addEventListener("dragout", handleDragOut);    
    
    var w2 = new qx.ui.basic.Atom("Drop to me");
    w2.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove, width: 100, height: 100, top: 230, left: 20, horizontalAlign: "center" });
    w2.setDropDataTypes(["text/html", "text/plain"]);
    w2.addEventListener("dragdrop", handleDragDrop);
    w2.addEventListener("dragover", handleDragOver);
    w2.addEventListener("dragout", handleDragOut);    

    var w3 = new qx.ui.basic.Atom("Drop to me");
    w3.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove, width: 100, height: 100, top: 100, left: 150, horizontalAlign: "center" });
    w3.setDropDataTypes(["text/html", "text/plain"]);
    w3.addEventListener("dragdrop", handleDragDrop);
    w3.addEventListener("dragover", handleDragOver);
    w3.addEventListener("dragout", handleDragOut);    
    
    var w4 = new qx.ui.basic.Atom("Drop to me");
    w4.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove, width: 100, height: 100, top: 230, left: 150, horizontalAlign: "center" });
    w4.setDropDataTypes(["text/html", "text/plain"]);
    w4.addEventListener("dragdrop", handleDragDrop);
    w4.addEventListener("dragover", handleDragOver);
    w4.addEventListener("dragout", handleDragOut);    
    
    
    
    var f1 = new qx.ui.layout.CanvasLayout;
    f1.set({ backgroundColor: "orange", width: 230, height: 120, top: 350, left: 20 });
  
    var w5 = new qx.ui.basic.Atom("Drop to me");
    w5.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove, width: 100, height: 100, top: 10, horizontalAlign: "center" });
    w5.setDropDataTypes(["text/html", "text/plain"]);
    w5.addEventListener("dragdrop", handleDragDrop);
    w5.addEventListener("dragover", handleDragOver);
    w5.addEventListener("dragout", handleDragOut);     
    
    var w6 = new qx.ui.basic.Atom("Drop to me");
    w6.set({ backgroundColor: "white", border: qx.renderer.border.BorderPresets.getInstance().groove, width: 100, height: 100, top: 10, right: 0, horizontalAlign: "center" });
    w6.setDropDataTypes(["text/html", "text/plain"]);
    w6.addEventListener("dragdrop", handleDragDrop);
    w6.addEventListener("dragover", handleDragOver);
    w6.addEventListener("dragout", handleDragOut);   
    
    f1.add(w5, w6);
    d.add(w1, w2, w3, w4, f1);
  });
  </script>
</body>
</html>