0
votes
0answers
19 views

How to add an image while we drag n drop tree item?

I have a tree with number of childs and i want to drag and drop these child items on a vertical panel. Right now its working fine.The only thing i want to know is can we add an image in the place of ...
0
votes
0answers
17 views

Implementing Drag And Drop on JTable to custom JComponent

The program for which I wanted to solve the problem first was to complex, so I decided to write a sample program just to solve this drag and drop problem. So I have written a program with a JTable, ...
1
vote
1answer
40 views

Is the transfer data for transferables from outside the jvm null by default when the TransferHandler canImport method gets called?

I'm working on Drag & Drop support for a JList component and I would like to be able to support files dragged in from my file browser. I however only want to allow files and not folders to be ...
2
votes
2answers
45 views

Reordering JList with Drag and Drop

I encountered a problem regarding reordering elements in a JList using Drag and Drop. This following code is a modification of a code where you could drag elements from one JList to another (worked ...
-1
votes
1answer
35 views

Different JLabel declaration when click and drop at JPanel

I made a program that simulates logic gates and I'm having a problem with my Logic Gates as JLabel by adding to my Drawing Canvas. When I drop two input (for example switch) that connected to wire, ...
0
votes
0answers
36 views

Drag and drop JLabel to windows taskbar

I have made a launcher for my games, and I was wondering if there is a way to drag the games icon (JLabel) to the windows taskbar and give it the target of "launcher.exe {Game_Name}", which will ...
0
votes
1answer
22 views

Dealing with a DragGestureRecognizer when it is no longer needed

How do I deal with a DragGestureRecognizer when it is no longer needed? I'm using DragSource.getDefaultDragSource().createDefaultDragGestureRecognizer() to make sure that a custom DragGestureListener ...
0
votes
1answer
23 views

Java drag and drop doesnt work

I'm trying Java drag and drop action. Action works by mobilizing the path to the image that I wanted to portray subsequently label, but are not plotted, can someone please help? class ...
0
votes
0answers
20 views

URL Drag support in SWT Browser

I am writing an application which uses SWT Browser. Now I want to include a feature wherein the user can drag the hyperlinks rendered in the SWT Browser after opening some web page. For instance ...
0
votes
2answers
32 views

Use geometric shapes as components

I am trying to create an application similar to Paint, in which I must use some basic shapes in order to create more complex ones. I will use Swing. I have to be able to drag and drop objects from ...
0
votes
1answer
49 views

move image from one panel to another

I have Code where I can move image. Everything works well. here I have only one ImagePanel (children of JPanel) on the frame. Questions: I need to drag and drop image from one JPanel to another ...
2
votes
0answers
65 views

JTable + DnD : why is first hovered row after drag row selected?

I've got a JTable which supports reordering by dragging and dropping rows. This works fairly well. However, every time a drag is initiated on a given row the first subsequent row which the mouse ...
3
votes
1answer
52 views

Java: How to drag a file from a JTable to native filesystem?

My Java 7 Swing application features a JTable that contains the following objects: public class MyFile { private long id; private long created; private long modified; private String ...
9
votes
4answers
349 views

Java 7: How to implement drag & drop in Java?

I am currently experimenting with drag&drop using Java 7 Update 21. My target operating systems are: Windows 7 Ubuntu 12.04 Mac OSX 10.6 / 10.8 The requirements are: drag files from the ...
0
votes
1answer
33 views

Dragging a file from a JList to a Windows Explorer window

First I just want to admit that I'm not the sharpest Java developer out there. My strengths/experiences are mostly in JavaScript, etc. browsers. I've been asked to create an applet that can be used ...
0
votes
0answers
38 views

DnD from JTree to JPanel my Graphics2D class

I'm having a problem in finding some source code regarding to my case where I have my JTree at left JSplitPane and I just want to Drag and Drop my Graphics2D from other class to JPanel from the right ...
0
votes
0answers
25 views

transferhandler ignores drag event

I set a transfer handler on a JTable (embedded in JPanel + JScrollPane). Dragging elements from the table somewhere else (create transferable ...) works. Drop elements to the table doesn't work,any ...
0
votes
0answers
45 views

doesn't display the label correctly when dragged

when you drag the label it just displays it in the upper left corner of the JPanel (board) This is my code. But the code that I copied from is working. Piece extends JLabel{/* code*/} My code ...
7
votes
2answers
211 views

Scroll gridview while dragging item (as shadow)

I am developing for api > 14 and I have implemented drag/drop functionality on a GridView. However, while dragging items to the top or bottom of the screen the GridView does not scroll. I would ...
0
votes
0answers
47 views

Not able to implement drag and drop; dragSetData not getting called

I am trying to incorporate a drag-and-drop feature with our product. I have created a new custom view which has a tree structure and am interested in dropping the content from this tree to an already ...
-5
votes
2answers
35 views

Dragable components [closed]

My problem is how I could create a dragable environment of objects (JPanel, JButton, etc.) so that I wouldn't able to utilize the FlowLayout class which displays the client in an orderly manner. What ...
0
votes
2answers
109 views

JavaFX Drag and Drop causes crash outside the Java Virtual Machine

Hi I have a small problem with JavaFXs DragandDrop(DnD) The DnD is executed correctly, which means the file is created and moved to the right posiotion. Even if I use an existing file (then i don't ...
0
votes
1answer
43 views

dragging classes between two JLists

I have a JList that contains a list of java classes. I would like to drag a class from this JList to another, but I'm a little confused about how to identify an importable drop using the DataFlavors. ...
0
votes
0answers
63 views

Zoom in and out panel with drag and drop components inside

I have been working on the zoom in and out function using the Graphics2D scale. Here is my code in paintcomponent: g2.translate(zoomX, zoomY); g2.scale(zoom, zoom); g2.translate(-zoomX, ...
1
vote
0answers
83 views

Drag and Drop extension in Eclipse

I am implementing the drag and drop feature in an Eclipse based product that we use. Essentially we are extending the behavior to add our own. I have created a custom view using Eclipse templates. ...
0
votes
2answers
24 views

How do I create an area were files dragged into it add the URI to a list?

I am trying to create a program were the user drags a file into an area (currently a JTextArea, but can be another container) and it adds the absolute path of the file to an ArrayList. I am having ...
0
votes
0answers
77 views

Drag&Drop and Scaling of imageView in Android view jumps back on start position

I programmed Drag and drop and scaling of an ImageView and it also works. But if I move it to a position and then want to move it again it first jumps to the start position. How can I fix this ...
0
votes
0answers
59 views

Cannot add drag-and-drop to top-level JFrame

I've got a JFrame set like this: class MainWindow extends JFrame { JPanel left, tab1, tab2; JTabbedPane right; public MainWindow(String name) super(name); left = new ...
0
votes
0answers
26 views

Java Droptarget error

I have a two panel in which objects in panel1 can be dragged and dropped into panel2. It is working well, until i load object from saved xml file and the function directly loads the object into ...
0
votes
1answer
81 views

java Drag and Drop - List doesn't take parametrs

I'm trying to make a simple application, which use DnD to get file path. I found here practicly the same thing, which I would like to use. But I got an Error - typ List does not take parameters. When ...
1
vote
1answer
135 views

Java: mouseDragged and moving around in a graphical interface

newbie programmer here. I'm making a program that renders user-inputted equations in a Cartesian coordinate system. At the moment I'm having some issues with letting the user move the view around ...
0
votes
0answers
128 views

Creating transferable objects in java swing using drag and drop

I have a problem with creating drag and drop in Swing. I have written class that represents the toolbar item here is the code shortened code for it: public class ToolbarItem extends ...
0
votes
2answers
64 views

GWT: Drag&Drop Event for TextField?

I wonder how it is possible to listen for the drop event for a TextField. I need to intercept that events in order to do value checks. I wrote an extended TextBox, which fires TextChangeEvents. But ...
-1
votes
1answer
197 views

Add String to JList exactly where they're dropped, not at the bottom

I've got a couple of JList both being able to be sources and destinations of DnD COPY actions. They work fine, but for one thing - elements are added at the bottom of the lists, instead at the drop ...
-1
votes
1answer
135 views

java drag and drop

I try to get familar with drag and drop in java but all the tutorials I found were... (getting me angry) All I want is to drag a "PublicUserLabel" from a JList (included in a selfmade JPanel called ...
0
votes
0answers
71 views

Drag and Drop Table to Class for Java

I am making a scheduler and I am having a problem on making a separate table for my system. First of all, the original code was embedded inside the system and I wanna make another version, of which ...
0
votes
0answers
78 views

Glass Pane Over Scroll Pane

I have a single JFrame which contains a JSplitPane, with each split pane holding a JScrollPane. On top of the entire JFrame is set a glass pane. For the most part, this does what I want - enabling ...
0
votes
3answers
140 views

Java Library for Drag and Drop, and Diagram Draw Support [closed]

I am working on a software where I need to define items to be dragged and dropped onto a blank screen. The item properties are set within the screen, and could also be removed. It is similar to what ...
0
votes
1answer
140 views

SWT TreeViewer Drag n Drop: SWTException Widget is disposed

I have a CTabFolder containing a few disposable tabs which contain a TreeViewer each. I want every Viewer to have a DragSupport. So naturally i used the method TreeViewer#addDragSupport for that. ...
0
votes
1answer
54 views

setLocation after window moved

I made a drag'n'drop algorithm to let components be dragged inside the window. It performs well, until I move the frame window... If I move the window, the position of the component is then shifted ...
0
votes
1answer
63 views

Android, delete dragged item after drop

// Touched public class ChoiceTouchListener implements OnTouchListener { public boolean onTouch(View view, MotionEvent motionEvent) { switch (motionEvent.getAction()) { case ...
0
votes
0answers
53 views

Android drag and drop with sqlite

Cursor query = db.rawQuery("SELECT * FROM number_dashboard", null); if (query.moveToFirst()) { do { int ID = Integer.parseInt(query.getString(0)); String number = query.getString(1); float X = ...
0
votes
1answer
194 views

Panel for drag and drop image file, with java swing

I'm trying to make a java swing panel, where you can drag and drop images. And save the images displayed on the panel. I found this which I think would help me a lot. But on my computer with windows 7 ...
0
votes
0answers
75 views

Android Drag and Move Textview

Simply. Initialized private TextView TempNumber; I have TempNumber = (TextView) findViewById(R.id.numbers); Then I Call Class TempNumber.setOnTouchListener(new ChoiceTouchListener()); and here is ...
1
vote
1answer
202 views

Java Drag-n-Drop files of specific extension on JFrame

I would like to implement DnD for my application to accept only files of certain extension (eg. wrl). I would like to change the cursor to a drag cursor if the file will be accepted and revert back to ...
0
votes
0answers
26 views

info on Drag Entered

When I drag my View, I want to be able to see what view I am dragging into upon drag entered. I know I can get the View that I am dragging by using View draggedView = (View) event.getLocalState(); ...
1
vote
0answers
64 views

jtree transferhandler, data not inserted correctly

i try to drag a component to a jtree. that don't work for some case example: root A it's a leaf B it's child of A if i try to insert it like a child of B, it will be inserted like a child of ...
4
votes
1answer
675 views

Bauerca drag-sort-listview simple example

Bauerca drag-sort-listview is an amazing library for the drag functionality in a list view.. https://github.com/bauerca/drag-sort-listview BUT my problem is that the demo project is pretty complex, I ...
1
vote
0answers
37 views

DragSource - InvalidDnDOperationException on starting DragAction

my application contains a few JPanels that sould be moved by DnD. I have implemented all listeners and handlers, everything seems to be right. When dragging one panel with the mouse my ...
0
votes
0answers
38 views

Drag'n'dropping files from Java app to any folder

I need to let users drag and drop files from my FTP-browser-like Java application to their desktop (or any other folder). I got a working draft using the TransferHandler and Transferable classes. My ...

1 2 3 4 5 6