1
vote
0answers
29 views

Drag and drop, motion_notify_event, mouse coordinate shaking

Then i start to drag an icon (code below), it starts jumping between 2 positions. Can anybody help me resolve this shaking problem ? Code: #include <stdlib.h> #include <stdio.h> ...
0
votes
1answer
247 views

Drag and drop in C for Windows and Linux

I'd like to implement Drag 'n Drop of files into my C-program which runs on Windows and Linux. On the web I only found solutions for Windows. Somewhere I read that SDL provides methods for drag and ...
0
votes
1answer
128 views

Reorder GtkTreeView in Microsoft Windows using gtk_tree_view_set_reorderable

According to the GTK+ Reference Manual, using gtk_tree_view_set_reorderable will enable drag and drop for reordering rows. I tried it in Linux using GTK+ 3 and GTK+ 2, and it seems to work fine. But ...
0
votes
1answer
68 views

Library for drag and drop to specific areas

What library can I use to implement the following kind of functionality on Linux: http://www.flickr.com/photos/65774455@N08/5983551492/in/photostream/ ...
-1
votes
1answer
94 views

C Programming: Drag&Drop a file over a program's icon

i just made a little program that reads the name of a file dragged over it's icon and writes it into an output text file but if i compile this program, it crashes when i try to drag a file over it. ...
0
votes
2answers
772 views

How to get path of file dragged into Win32 app and delete it?

I have a program and when they drop files into it I want it to get the path show a messagebox "of the path" then delete it. Can anyone shed some light on how to do this?
4
votes
5answers
4k views

Drag and drop in winapi

I have a pure Winapi application that needs a few new features. One of them would best be implemented as two lists where you can drag-and-drop (multiple) elements between the lists. The new feature ...