Sha256: ee9388492ea6492e727851ad667d60935c2438f5fa0724e18e7ba4dc90b7d774

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 KB

Contents

// ========================================================================
// SproutCore -- JavaScript Application Framework
// Copyright ©2006-2011, Strobe Inc. and contributors.
// Portions copyright ©2008 Apple Inc.  All rights reserved.
// ========================================================================

require('system/drag') ;


/**
  @namespace

  This mixin can be used to implement a dynamic data source for a drag 
  operation.  You can return a set of allowed data types and then the 
  method will be used to actually get data in that format when requested.
*/
SC.DragDataSource = {

  /** @property
    Implement this property as an array of data types you want to support
    for drag operations.
  */
  dragDataTypes: [],

  /**
    Implement this method to return the data in the format passed.  Return
    null if the requested data type cannot be generated.
  
    @param {SC.Drag} drag The Drag instance managing this drag.
    @param {Object} dataType The proposed dataType to return.  This will 
      always be one of the data types declared in dragDataTypes.
    
    @returns The data object for the specified type
  */
  dragDataForType: function(drag, dataType) { return null; }
  
};


Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
spade-0.0.1 sproutcore/frameworks/desktop/protocols/drag_data_source.js
sproutcore-1.5.0.pre.5 lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js
sproutcore-1.5.0.pre.4.1 lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js
sproutcore-1.5.0.pre.4 lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js
sproutcore-1.5.0.pre.3 lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js
sproutcore-1.4.5 lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js
sproutcore-1.4.5-java lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js