public virtual int ConfirmEx(string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, ref bool checkValue) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>() .ConfirmEx(dialogTitle, text, buttonFlags, button0Title, button1Title, button2Title, checkMsg, ref checkValue)); }
public static void Init() { DefaultPromptFactory.Init(); Register(); }
public bool PromptPassword(string dialogTitle, string text, string passwordRealm, uint savePassword, ref string pwd) { return(DefaultPromptFactory.GetPrompt <nsIAuthPrompt>().PromptPassword(dialogTitle, text, passwordRealm, savePassword, ref pwd)); }
public bool Prompt(string dialogTitle, string text, string passwordRealm, uint savePassword, string defaultText, ref string result) { return(DefaultPromptFactory.GetPrompt <nsIAuthPrompt>().Prompt(dialogTitle, text, passwordRealm, savePassword, defaultText, ref result)); }
public nsICancelable AsyncPromptAuth(nsIChannel aChannel, nsIAuthPromptCallback aCallback, nsISupports aContext, uint level, nsIAuthInformation authInfo) { return(DefaultPromptFactory.GetPrompt <nsIAuthPrompt2>().AsyncPromptAuth(aChannel, aCallback, aContext, level, authInfo)); }
public bool PromptAuth(nsIChannel aChannel, uint level, nsIAuthInformation authInfo) { return(DefaultPromptFactory.GetPrompt <nsIAuthPrompt2>().PromptAuth(aChannel, level, authInfo)); }
public bool Select(string dialogTitle, string text, uint count, IntPtr[] selectList, ref int outSelection) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>().Select(dialogTitle, text, count, selectList, ref outSelection)); }
public bool PromptUsernameAndPassword(string dialogTitle, string text, ref string username, ref string password, string checkMsg, ref bool checkValue) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>().PromptUsernameAndPassword(dialogTitle, text, ref username, ref password, checkMsg, ref checkValue)); }
public bool Prompt(string dialogTitle, string text, ref string value, string checkMsg, ref bool checkValue) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>().Prompt(dialogTitle, text, ref value, checkMsg, ref checkValue)); }
public bool ConfirmCheck(string dialogTitle, string text, string checkMsg, ref bool checkValue) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>().ConfirmCheck(dialogTitle, text, checkMsg, ref checkValue)); }
public bool Confirm(string dialogTitle, string text) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>().Confirm(dialogTitle, text)); }
public void AlertCheck(string dialogTitle, string text, string checkMsg, ref bool checkValue) { DefaultPromptFactory.GetPrompt <nsIPrompt>().AlertCheck(dialogTitle, text, checkMsg, ref checkValue); }
public void Alert(string dialogTitle, string text) { DefaultPromptFactory.GetPrompt <nsIPrompt>().Alert(dialogTitle, text); }
public static void Shutdown() { DefaultPromptFactory.Shutdown(); }
public virtual bool PromptUsernameAndPassword(string dialogTitle, string text, string passwordRealm, uint savePassword, ref string user, ref string pwd) { return(DefaultPromptFactory.GetPrompt <nsIAuthPrompt>().PromptUsernameAndPassword(dialogTitle, text, passwordRealm, savePassword, ref user, ref pwd)); }
public virtual bool PromptPassword(string dialogTitle, string text, ref string password, string checkMsg, ref bool checkValue) { return(DefaultPromptFactory.GetPrompt <nsIPrompt>().PromptPassword(dialogTitle, text, ref password, checkMsg, ref checkValue)); }