2002-09-17 18:51:22 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-31 09:33:35 +00: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/. */
|
2002-09-17 18:51:22 +00:00
|
|
|
|
2013-11-26 18:18:21 +00:00
|
|
|
#ifndef nsNSSDialogHelper_h
|
|
|
|
#define nsNSSDialogHelper_h
|
|
|
|
|
2011-07-15 10:31:34 +00:00
|
|
|
#include "nsIDOMWindow.h"
|
2002-09-17 18:51:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Common class that uses the window watcher service to open a
|
|
|
|
* standard dialog, with or without a parent context. The params
|
|
|
|
* parameter can be an nsISupportsArray so any number of additional
|
|
|
|
* arguments can be used.
|
|
|
|
*/
|
|
|
|
class nsNSSDialogHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//The params is going to be either a nsIPKIParamBlock or
|
|
|
|
//nsIDialogParamBlock
|
|
|
|
static nsresult openDialog(
|
2011-07-15 10:31:34 +00:00
|
|
|
nsIDOMWindow *window,
|
2002-09-17 18:51:22 +00:00
|
|
|
const char *url,
|
2010-03-12 06:50:10 +00:00
|
|
|
nsISupports *params,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool modal = true);
|
2002-09-17 18:51:22 +00:00
|
|
|
};
|
|
|
|
|
2013-11-26 18:18:21 +00:00
|
|
|
#endif
|