Difference between revisions of "Drop files event"

From Free Pascal wiki
Jump to navigationJump to search
(new)
 
Line 26: Line 26:
 
* respond to kAECoreSuite/kAEOpenDocuments event to open application associated files
 
* respond to kAECoreSuite/kAEOpenDocuments event to open application associated files
 
* respond to kAECoreSuite/kAEOpenContents event, where content format is typeFSRef
 
* respond to kAECoreSuite/kAEOpenContents event, where content format is typeFSRef
 +
 +
=TODO=
 +
# agree on details
 +
# implement for LCL/widgetsets
 +
# example application and documentation

Revision as of 18:17, 22 June 2007

The files drop event will be invoked when the user drops one or multiple dragged files on one of application's forms.

First this event should be fired for target form (or main form if drop target is unknown), then for the application.

Possible implementation for LCL

TFilesDropEvent = procedure (Sender: TObject; const FileNames: Array of String) of Object;
TFilesDropEvent = procedure (Sender: TObject; const FileNames: TStrings) of Object;

Add OnFilesDrop: TFilesDropEvent to TCustomForm, TApplication and TApplicationProperties.

The widgetsets should call method IntfFilesDrop of target form, which would invoke the OnFilesDrop event of the form and also of the application.

Possible implementation per widgetsets

Win32/64

  • set DragAcceptFiles for every form
  • respond to WM_DROPFILES message

GTK1/2

Qt

Carbon

  • respond to kAECoreSuite/kAEOpenDocuments event to open application associated files
  • respond to kAECoreSuite/kAEOpenContents event, where content format is typeFSRef

TODO

  1. agree on details
  2. implement for LCL/widgetsets
  3. example application and documentation