1999-04-14 23:55:41 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-04-14 23:55:41 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-04-14 23:55:41 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-04-14 23:55:41 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-04-14 23:55:41 +04:00
|
|
|
*/
|
|
|
|
|
1999-06-08 01:33:30 +04:00
|
|
|
#include "nsISupports.idl"
|
1999-04-14 23:55:41 +04:00
|
|
|
|
1999-06-08 01:33:30 +04:00
|
|
|
[scriptable, uuid(a63f70c0-148b-11d3-9333-00104ba0fd40)]
|
|
|
|
interface nsIPrompt : nsISupports
|
|
|
|
{
|
1999-07-01 23:30:20 +04:00
|
|
|
/**
|
|
|
|
* Puts up an alert dialog with an OK button.
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
void alert(in wstring text);
|
1999-04-14 23:55:41 +04:00
|
|
|
|
1999-07-01 23:30:20 +04:00
|
|
|
/**
|
|
|
|
* Puts up a dialog with OK and Cancel buttons.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean confirm(in wstring text);
|
1999-04-14 23:55:41 +04:00
|
|
|
|
1999-07-01 23:30:20 +04:00
|
|
|
/**
|
|
|
|
* Puts up a dialog with OK and Cancel buttons, and
|
|
|
|
* a message with a single checkbox.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean confirmCheck(in wstring text,
|
1999-07-01 23:30:20 +04:00
|
|
|
in wstring checkMsg,
|
|
|
|
out boolean checkValue);
|
1999-04-14 23:55:41 +04:00
|
|
|
|
1999-08-06 04:29:10 +04:00
|
|
|
/**
|
|
|
|
* Puts up a dialog with Yes and No buttons.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean confirmYN(in wstring text);
|
1999-08-06 04:29:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Puts up a dialog with Yes and No buttons, and
|
|
|
|
* a message with a single checkbox.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean confirmCheckYN(in wstring text,
|
1999-08-06 04:29:10 +04:00
|
|
|
in wstring checkMsg,
|
|
|
|
out boolean checkValue);
|
|
|
|
|
1999-07-01 23:30:20 +04:00
|
|
|
/**
|
|
|
|
* Puts up a text input dialog with OK and Cancel buttons.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean prompt(in wstring text,
|
1999-07-01 23:30:20 +04:00
|
|
|
in wstring defaultText,
|
|
|
|
out wstring result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Puts up a username/password dialog with OK and Cancel buttons.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean promptUsernameAndPassword(in wstring text,
|
1999-07-01 23:30:20 +04:00
|
|
|
out wstring user,
|
|
|
|
out wstring pwd);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Puts up a password dialog with OK and Cancel buttons.
|
|
|
|
* @return true for OK, false for Cancel
|
|
|
|
*/
|
1999-10-12 05:39:37 +04:00
|
|
|
boolean promptPassword(in wstring text,
|
1999-06-11 19:50:14 +04:00
|
|
|
out wstring pwd);
|
1999-04-14 23:55:41 +04:00
|
|
|
};
|