2001-09-26 02:58:40 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-04-10 06:15:22 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIHelperAppLauncher;
|
2012-06-06 06:08:30 +04:00
|
|
|
interface nsIFile;
|
2001-04-10 06:15:22 +04:00
|
|
|
|
|
|
|
/**
|
2009-07-27 12:47:05 +04:00
|
|
|
* This interface is used to display a confirmation dialog before
|
2001-04-10 06:15:22 +04:00
|
|
|
* launching a "helper app" to handle content not handled by
|
|
|
|
* Mozilla.
|
|
|
|
*
|
|
|
|
* Usage: Clients (of which there is one: the nsIExternalHelperAppService
|
|
|
|
* implementation in mozilla/uriloader/exthandler) create an instance of
|
|
|
|
* this interface (using the contract ID) and then call the show() method.
|
|
|
|
*
|
|
|
|
* The dialog is shown non-modally. The implementation of the dialog
|
|
|
|
* will access methods of the nsIHelperAppLauncher passed in to show()
|
|
|
|
* in order to cause a "save to disk" or "open using" action.
|
|
|
|
*/
|
2013-04-01 14:00:49 +04:00
|
|
|
[scriptable, uuid(f3704fdc-8ae6-4eba-a3c3-f02958ac0649)]
|
2001-04-10 06:15:22 +04:00
|
|
|
interface nsIHelperAppLauncherDialog : nsISupports {
|
2005-03-13 20:03:44 +03:00
|
|
|
/**
|
|
|
|
* This request is passed to the helper app dialog because Gecko can not
|
|
|
|
* handle content of this type.
|
|
|
|
*/
|
|
|
|
const unsigned long REASON_CANTHANDLE = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The server requested external handling.
|
|
|
|
*/
|
|
|
|
const unsigned long REASON_SERVERREQUEST = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gecko detected that the type sent by the server (e.g. text/plain) does
|
|
|
|
* not match the actual type.
|
|
|
|
*/
|
|
|
|
const unsigned long REASON_TYPESNIFFED = 2;
|
|
|
|
|
2008-04-03 07:02:08 +04:00
|
|
|
/**
|
|
|
|
* Show confirmation dialog for launching application (or "save to
|
|
|
|
* disk") for content specified by aLauncher.
|
|
|
|
*
|
|
|
|
* @param aLauncher
|
|
|
|
* A nsIHelperAppLauncher to be invoked when a file is selected.
|
|
|
|
* @param aWindowContext
|
|
|
|
* Window associated with action.
|
|
|
|
* @param aReason
|
|
|
|
* One of the constants from above. It indicates why the dialog is
|
|
|
|
* shown. Implementors should treat unknown reasons like
|
|
|
|
* REASON_CANTHANDLE.
|
|
|
|
*/
|
2003-08-05 02:30:41 +04:00
|
|
|
void show(in nsIHelperAppLauncher aLauncher,
|
2008-04-03 07:02:08 +04:00
|
|
|
in nsISupports aWindowContext,
|
2005-03-13 20:03:44 +03:00
|
|
|
in unsigned long aReason);
|
2008-04-03 07:02:08 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoke a save-to-file dialog instead of the full fledged helper app dialog.
|
2012-06-06 06:08:30 +04:00
|
|
|
* Returns the a nsIFile for the file name/location selected.
|
2008-04-03 07:02:08 +04:00
|
|
|
*
|
|
|
|
* @param aLauncher
|
|
|
|
* A nsIHelperAppLauncher to be invoked when a file is selected.
|
|
|
|
* @param aWindowContext
|
|
|
|
* Window associated with action.
|
|
|
|
* @param aDefaultFileName
|
|
|
|
* Default file name to provide (can be null)
|
|
|
|
* @param aSuggestedFileExtension
|
|
|
|
* Sugested file extension
|
|
|
|
* @param aForcePrompt
|
|
|
|
* Set to true to force prompting the user for thet file
|
|
|
|
* name/location, otherwise perferences may control if the user is
|
|
|
|
* prompted.
|
|
|
|
*/
|
2012-06-06 06:08:30 +04:00
|
|
|
nsIFile promptForSaveToFile(in nsIHelperAppLauncher aLauncher,
|
|
|
|
in nsISupports aWindowContext,
|
|
|
|
in wstring aDefaultFileName,
|
|
|
|
in wstring aSuggestedFileExtension,
|
|
|
|
in boolean aForcePrompt);
|
2001-04-10 06:15:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
%{C++
|
2010-05-28 15:37:09 +04:00
|
|
|
#define NS_HELPERAPPLAUNCHERDLG_CONTRACTID "@mozilla.org/helperapplauncherdialog;1"
|
2001-04-10 06:15:22 +04:00
|
|
|
%}
|