Constructors in wt.clients.dndMicroApplet with parameters of type DnDMicroApplet |
ShowDocOnDblClick(DnDMicroApplet applet,
URL url)
|
DropListener(DnDMicroApplet applet,
String fileDropJSFunc,
String jsFileDelim,
URL fileDropURL,
boolean acceptDirDrops,
String stringDropJSFunc,
URL stringDropURL,
URL dropPostURL,
URL returnURL,
String idString)
Construction of the drop listener takes a reference to the applet
(only to allow use of showDocument(), change applet display
state upon drag over, and to call JavaScript functions if so
specified), the JavaScript function to send file drops to, a string
for this function to use to delimit files in a file list string,
the URL to send file drops to, whether to include directories in
file drops, the JavaScript function to send string/text drops to,
the URL to send string/text data to, the URL to POST data to when
the data is too large for a GET, the return URL, and the id string
for the applet (to pass to JavaScript functions). |
DragListener(DnDMicroApplet applet,
Image dragImage,
URL urlDragSource,
String dragFileName,
String stringDragSource,
boolean downloadOnDrag,
String hasStringDataFunc,
String getStringDataFunc,
String idString)
Takes an applet (solely to allow use of showStatus() during drags and
as a source of Locale and to use the DnDMicroApplet.callJavaScriptFunction()
utility method), a URL from which file list drag source data
will be derived, a String to serve as string/text drag source data,
a flag to indicate whether file list data should hyperlink to
the URL itself or the downloaded contents thereof, the name of a
JavaScript function to dynamically determine if there is string drag
data, the name of a JavaScript function to dynamically obtain
string drag data, and a string to identify this applet to JavaScript
(for use with the JavaScript function). |
CallJSFunctionOnDblClick(DnDMicroApplet applet,
String functionName,
Object[] args)
|