diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2002-02-24 17:52:18 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2002-02-24 17:52:18 +0000 |
| commit | 4603756ed1284dfc9d71a556976f4f5b898abd24 (patch) | |
| tree | 4a6305d9017b0dc0c34ae97b3ed44f3266a1c1be /src/fl_dnd.cxx | |
| parent | 0372675ee12e54acd993f6d25a9489c1373caf75 (diff) | |
- added Win32 native drag'n'drop code
- added dnd support for Fl_Group (not tested with X!)
- added dnd support for Fl_Input (not tested with X!)
- no Mac implementation yet!
Go ahead: drag text or a file from the explorer into
a text widget! Tadaa!
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1971 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_dnd.cxx')
| -rw-r--r-- | src/fl_dnd.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fl_dnd.cxx b/src/fl_dnd.cxx index 7f961c602..c7f8b4831 100644 --- a/src/fl_dnd.cxx +++ b/src/fl_dnd.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_dnd.cxx,v 1.3.2.1 2002/01/09 21:50:02 easysw Exp $" +// "$Id: fl_dnd.cxx,v 1.3.2.2 2002/02/24 17:52:18 matthiaswm Exp $" // // Drag & Drop code for the Fast Light Tool Kit (FLTK). // @@ -25,12 +25,12 @@ #ifdef WIN32 # include "fl_dnd_win32.cxx" -//#elif defined(__APPLE__) -//# include "fl_dnd_mac.cxx" +#elif defined(__APPLE__) +# include "fl_dnd_mac.cxx" #else # include "fl_dnd_x.cxx" #endif // -// End of "$Id: fl_dnd.cxx,v 1.3.2.1 2002/01/09 21:50:02 easysw Exp $". +// End of "$Id: fl_dnd.cxx,v 1.3.2.2 2002/02/24 17:52:18 matthiaswm Exp $". // |
