2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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/. */
|
1999-04-14 23:55:41 +04:00
|
|
|
|
2001-04-21 04:26:18 +04:00
|
|
|
/**
|
|
|
|
* This is the prompt interface which can be used without knowlege of a
|
|
|
|
* parent window. The parentage is hidden by the GetInterface though
|
|
|
|
* which it is gotten. This interface is identical to nsIPromptService
|
|
|
|
* but without the parent nsIDOMWindow parameter. See nsIPromptService
|
|
|
|
* for all documentation.
|
2002-10-01 09:13:37 +04:00
|
|
|
*
|
|
|
|
* Accesskeys can be attached to buttons and checkboxes by inserting
|
|
|
|
* an & before the accesskey character. For a real &, use && instead.
|
2019-05-23 01:37:14 +03:00
|
|
|
*/
|
2001-03-24 03:22:18 +03: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
|
|
|
|
{
|
2000-05-16 09:35:23 +04:00
|
|
|
void alert(in wstring dialogTitle,
|
|
|
|
in wstring text);
|
1999-04-14 23:55:41 +04:00
|
|
|
|
2000-09-15 02:56:56 +04:00
|
|
|
void alertCheck(in wstring dialogTitle,
|
|
|
|
in wstring text,
|
|
|
|
in wstring checkMsg,
|
2001-05-02 18:47:09 +04:00
|
|
|
inout boolean checkValue);
|
2000-09-15 02:56:56 +04:00
|
|
|
|
2000-05-16 09:35:23 +04:00
|
|
|
boolean confirm(in wstring dialogTitle,
|
|
|
|
in wstring text);
|
1999-04-14 23:55:41 +04:00
|
|
|
|
2000-05-16 09:35:23 +04:00
|
|
|
boolean confirmCheck(in wstring dialogTitle,
|
|
|
|
in wstring text,
|
1999-07-01 23:30:20 +04:00
|
|
|
in wstring checkMsg,
|
2001-05-02 18:47:09 +04:00
|
|
|
inout boolean checkValue);
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2001-04-21 04:26:18 +04:00
|
|
|
const unsigned long BUTTON_POS_0 = 1;
|
|
|
|
const unsigned long BUTTON_POS_1 = 1 << 8;
|
2001-05-06 19:03:55 +04:00
|
|
|
const unsigned long BUTTON_POS_2 = 1 << 16;
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2001-04-21 04:26:18 +04:00
|
|
|
const unsigned long BUTTON_TITLE_OK = 1;
|
|
|
|
const unsigned long BUTTON_TITLE_CANCEL = 2;
|
|
|
|
const unsigned long BUTTON_TITLE_YES = 3;
|
|
|
|
const unsigned long BUTTON_TITLE_NO = 4;
|
|
|
|
const unsigned long BUTTON_TITLE_SAVE = 5;
|
2001-05-06 19:03:55 +04:00
|
|
|
const unsigned long BUTTON_TITLE_DONT_SAVE = 6;
|
|
|
|
const unsigned long BUTTON_TITLE_REVERT = 7;
|
2001-04-21 04:26:18 +04:00
|
|
|
|
2001-05-06 19:03:55 +04:00
|
|
|
const unsigned long BUTTON_TITLE_IS_STRING = 127;
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2004-05-24 17:33:51 +04:00
|
|
|
const unsigned long BUTTON_POS_0_DEFAULT = 0 << 24;
|
|
|
|
const unsigned long BUTTON_POS_1_DEFAULT = 1 << 24;
|
2004-06-05 13:26:01 +04:00
|
|
|
const unsigned long BUTTON_POS_2_DEFAULT = 2 << 24;
|
|
|
|
|
|
|
|
/* used for security dialogs, buttons are initially disabled */
|
|
|
|
const unsigned long BUTTON_DELAY_ENABLE = 1 << 26;
|
|
|
|
|
2001-04-21 04:26:18 +04:00
|
|
|
const unsigned long STD_OK_CANCEL_BUTTONS = (BUTTON_TITLE_OK * BUTTON_POS_0) +
|
|
|
|
(BUTTON_TITLE_CANCEL * BUTTON_POS_1);
|
2006-12-31 22:23:50 +03:00
|
|
|
const unsigned long STD_YES_NO_BUTTONS = (BUTTON_TITLE_YES * BUTTON_POS_0) +
|
|
|
|
(BUTTON_TITLE_NO * BUTTON_POS_1);
|
2001-05-06 19:03:55 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t confirmEx(in wstring dialogTitle,
|
2001-05-06 19:03:55 +04:00
|
|
|
in wstring text,
|
|
|
|
in unsigned long buttonFlags,
|
|
|
|
in wstring button0Title,
|
|
|
|
in wstring button1Title,
|
|
|
|
in wstring button2Title,
|
|
|
|
in wstring checkMsg,
|
2002-04-05 12:13:27 +04:00
|
|
|
inout boolean checkValue);
|
1999-04-14 23:55:41 +04:00
|
|
|
|
2001-04-10 22:30:25 +04:00
|
|
|
boolean prompt(in wstring dialogTitle,
|
|
|
|
in wstring text,
|
2019-05-23 01:37:14 +03:00
|
|
|
inout wstring value,
|
2001-04-10 22:30:25 +04:00
|
|
|
in wstring checkMsg,
|
|
|
|
inout boolean checkValue);
|
1999-07-01 23:30:20 +04:00
|
|
|
|
2001-04-10 22:30:25 +04:00
|
|
|
boolean promptPassword(in wstring dialogTitle,
|
|
|
|
in wstring text,
|
|
|
|
inout wstring password,
|
|
|
|
in wstring checkMsg,
|
|
|
|
inout boolean checkValue);
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2001-04-10 22:30:25 +04:00
|
|
|
boolean promptUsernameAndPassword(in wstring dialogTitle,
|
|
|
|
in wstring text,
|
|
|
|
inout wstring username,
|
|
|
|
inout wstring password,
|
|
|
|
in wstring checkMsg,
|
|
|
|
inout boolean checkValue);
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2000-05-16 09:35:23 +04:00
|
|
|
boolean select(in wstring dialogTitle,
|
|
|
|
in wstring text,
|
2019-06-06 11:03:56 +03:00
|
|
|
in Array<AString> selectList,
|
2000-01-07 05:06:57 +03:00
|
|
|
out long outSelection);
|
1999-04-14 23:55:41 +04:00
|
|
|
};
|