summaryrefslogtreecommitdiff
path: root/LiteEditor/filedroptarget.h
diff options
context:
space:
mode:
authorAlessio Treglia <quadrispro@ubuntu.com>2010-05-02 01:26:17 +0200
committerAlessio Treglia <quadrispro@ubuntu.com>2010-05-02 01:26:17 +0200
commitd56483e1e302c0c318742cc247746a501d8076ce (patch)
treed7503113b1236ab945cc1ed5256fedf282579a43 /LiteEditor/filedroptarget.h
parent1183be3412652c2e979e7a0a9e12a8e6ac236ab3 (diff)
Merge with master-new.
Diffstat (limited to 'LiteEditor/filedroptarget.h')
-rw-r--r--LiteEditor/filedroptarget.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/LiteEditor/filedroptarget.h b/LiteEditor/filedroptarget.h
new file mode 100644
index 00000000..c23efcf9
--- /dev/null
+++ b/LiteEditor/filedroptarget.h
@@ -0,0 +1,35 @@
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+//
+// copyright : (C) 2008 by Eran Ifrah
+// file name : filedroptarget.h
+//
+// -------------------------------------------------------------------------
+// A
+// _____ _ _ _ _
+// / __ \ | | | | (_) |
+// | / \/ ___ __| | ___| | _| |_ ___
+// | | / _ \ / _ |/ _ \ | | | __/ _ )
+// | \__/\ (_) | (_| | __/ |___| | || __/
+// \____/\___/ \__,_|\___\_____/_|\__\___|
+//
+// F i l e
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+ #ifndef DROPFILETARGET_H
+#define DROPFILETARGET_H
+
+#include <wx/dnd.h>
+class FileDropTarget : public wxFileDropTarget {
+public:
+ FileDropTarget();
+ virtual ~FileDropTarget();
+ virtual bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& filenames);
+};
+#endif //DROPFILETARGET_H