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-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
|
|
|
|
*/
|
2000-01-07 05:06:57 +03:00
|
|
|
boolean promptPassword(in wstring text,
|
|
|
|
in wstring title,
|
1999-06-11 19:50:14 +04:00
|
|
|
out wstring pwd);
|
1999-12-19 21:32:21 +03:00
|
|
|
|
2000-01-07 05:06:57 +03:00
|
|
|
/**
|
|
|
|
* Puts up a dialog box which has a list box of strings
|
1999-12-19 21:32:21 +03:00
|
|
|
*/
|
2000-01-07 05:06:57 +03:00
|
|
|
boolean select(in wstring inDialogTitle,
|
|
|
|
in wstring inMsg,
|
|
|
|
in PRUint32 inCount,
|
2000-01-13 00:53:32 +03:00
|
|
|
[array, size_is(inCount)] in wstring inList,
|
2000-01-07 05:06:57 +03:00
|
|
|
out long outSelection);
|
2000-01-05 06:17:11 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Put up a universal dialog
|
|
|
|
*/
|
2000-01-07 05:06:57 +03:00
|
|
|
void universalDialog(in wstring inTitleMessage,
|
|
|
|
in wstring inDialogTitle, /* e.g., alert, confirm, prompt, prompt password */
|
|
|
|
in wstring inMsg, /* main message for dialog */
|
|
|
|
in wstring inCheckboxMsg, /* message for checkbox */
|
|
|
|
in wstring inButton0Text, /* text for first button */
|
|
|
|
in wstring inButton1Text, /* text for second button */
|
|
|
|
in wstring inButton2Text, /* text for third button */
|
|
|
|
in wstring inButton3Text, /* text for fourth button */
|
|
|
|
in wstring inEditfield1Msg, /*message for first edit field */
|
|
|
|
in wstring inEditfield2Msg, /* message for second edit field */
|
|
|
|
inout wstring inoutEditfield1Value, /* initial and final value for first edit field */
|
|
|
|
inout wstring inoutEditfield2Value, /* initial and final value for second edit field */
|
|
|
|
in wstring inIConURL, /* url of icon to be displayed in dialog */
|
|
|
|
inout boolean inoutCheckboxState, /* initial and final state of checkbox */
|
|
|
|
in PRInt32 inNumberButtons, /* total number of buttons (0 to 4) */
|
|
|
|
in PRInt32 inNumberEditfields, /* total number of edit fields (0 to 2) */
|
|
|
|
in PRInt32 inEditField1Password, /* ??? */
|
|
|
|
out PRInt32 outButtonPressed); /* number of button that was pressed (0 to 3) */
|
1999-04-14 23:55:41 +04:00
|
|
|
};
|