mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
67 lines
2.5 KiB
C++
67 lines
2.5 KiB
C++
#ifndef __NS_INSTALLTRIGGER_H__
|
|
#define __NS_INSTALLTRIGGER_H__
|
|
|
|
#include "nscore.h"
|
|
#include "nsString.h"
|
|
#include "nsIFactory.h"
|
|
#include "nsISupports.h"
|
|
#include "nsIScriptObjectOwner.h"
|
|
|
|
#include "prtypes.h"
|
|
#include "nsHashtable.h"
|
|
|
|
#include "nsIDOMInstallTriggerGlobal.h"
|
|
#include "nsSoftwareUpdate.h"
|
|
#include "nsXPITriggerInfo.h"
|
|
|
|
#include "nsIContentHandler.h"
|
|
|
|
#define NOT_CHROME 0
|
|
#define CHROME_SKIN 1
|
|
#define CHROME_LOCALE 2
|
|
#define CHROME_SAFEMAX CHROME_SKIN
|
|
#define CHROME_CONTENT 4
|
|
#define CHROME_ALL (CHROME_SKIN | CHROME_LOCALE | CHROME_CONTENT)
|
|
#define CHROME_PROFILE 8
|
|
#define CHROME_DELAYED 0x10
|
|
#define CHROME_SELECT 0x20
|
|
|
|
#define XPI_PERMISSION "install"
|
|
|
|
#define XPI_WHITELIST PR_TRUE
|
|
#define XPI_GLOBAL PR_FALSE
|
|
|
|
class nsInstallTrigger: public nsIScriptObjectOwner,
|
|
public nsIDOMInstallTriggerGlobal,
|
|
public nsIContentHandler
|
|
{
|
|
public:
|
|
static const nsIID& IID() { static nsIID iid = NS_SoftwareUpdateInstallTrigger_CID; return iid; }
|
|
|
|
nsInstallTrigger();
|
|
virtual ~nsInstallTrigger();
|
|
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSICONTENTHANDLER
|
|
|
|
NS_IMETHOD GetScriptObject(nsIScriptContext *aContext, void** aScriptObject);
|
|
NS_IMETHOD SetScriptObject(void* aScriptObject);
|
|
|
|
NS_IMETHOD UpdateEnabled(nsIScriptGlobalObject* aGlobalObject, PRBool aUseWhitelist, PRBool* aReturn);
|
|
NS_IMETHOD Install(nsIScriptGlobalObject* aGlobalObject, nsXPITriggerInfo *aInfo, PRBool* aReturn);
|
|
NS_IMETHOD InstallChrome(nsIScriptGlobalObject* aGlobalObject, PRUint32 aType, nsXPITriggerItem* aItem, PRBool* aReturn);
|
|
NS_IMETHOD StartSoftwareUpdate(nsIScriptGlobalObject* aGlobalObject, const nsString& aURL, PRInt32 aFlags, PRInt32* aReturn);
|
|
NS_IMETHOD CompareVersion(const nsString& aRegName, PRInt32 aMajor, PRInt32 aMinor, PRInt32 aRelease, PRInt32 aBuild, PRInt32* aReturn);
|
|
NS_IMETHOD CompareVersion(const nsString& aRegName, const nsString& aVersion, PRInt32* aReturn);
|
|
NS_IMETHOD CompareVersion(const nsString& aRegName, nsIDOMInstallVersion* aVersion, PRInt32* aReturn);
|
|
NS_IMETHOD GetVersion(const nsString& component, nsString& version);
|
|
|
|
|
|
private:
|
|
PRBool AllowInstall(nsIURI* aLaunchURI);
|
|
void *mScriptObject;
|
|
};
|
|
|
|
#define NS_INSTALLTRIGGERCOMPONENT_CONTRACTID "@mozilla.org/xpinstall/installtrigger;1"
|
|
#endif
|