• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Drag and Drop Application

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

How to create a very small Drag and drop application in Java.
for Client side, they have to use a small Drag and Drop application for Sticker Designing.

Is there any method to do it.
Please help me regarding this
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you looked over the information in the Sing tutorial on Drag and Drop? It has some examples of how to use it.
 
Mythily Jaganathan
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks
am going through the document.
It is really a nice one.

Thanks& Regards
Mythily
 
Mythily Jaganathan
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Nathen,

Gone through the document and it deals with drag and drop for data transfer. But i want a drag and drop application for components like label, test, etc.,

A small application like eclipse drag and drop, so that we can provide it for clients.

Thanks & Regards,
Mythily
 
Nathan Pruett
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you provide a link to what you want with "drag and drop"? I did a search for "eclipse drag and drop" and found a document that talks about an SWT version of the AWT version of drag and drop discussed in the previous link... all data transfer related stuff...

Components *are* data - moving them between applications *is* data transfer. If you want to move components within the same application, then you don't need to do the "data transfer" stuff - you just need to change coordinates of the components based on mouse events.
 
Mythily Jaganathan
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Nathen,

Thanks a lot.

I found a demo for that drag and drop application. Like eclipse drag and drop of components, it also behaves as my own drag and drop application.

Thanks for your help.

Thanks& Regards
Mythily
 
reply
    Bookmark Topic Watch Topic
  • New Topic