1999-10-26 08:13:25 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +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/. */
|
1999-10-26 08:13:25 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
2005-02-22 21:49:45 +00:00
|
|
|
|
2004-09-21 20:19:48 +00:00
|
|
|
interface nsIURI;
|
1999-10-26 08:13:25 +00:00
|
|
|
|
2008-11-14 00:00:11 +00:00
|
|
|
[scriptable, uuid(249fb5ad-ae29-4e2c-a728-ba5cf464d188)]
|
1999-10-26 08:13:25 +00:00
|
|
|
interface nsIChromeRegistry : nsISupports
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
const int32_t NONE = 0;
|
|
|
|
const int32_t PARTIAL = 1;
|
|
|
|
const int32_t FULL = 2;
|
2002-01-06 20:09:10 +00:00
|
|
|
|
2000-01-06 00:31:06 +00:00
|
|
|
/**
|
2005-02-22 21:49:45 +00:00
|
|
|
* Resolve a chrome URL to an loadable URI using the information in the
|
|
|
|
* registry. Does not modify aChromeURL.
|
2000-01-06 00:31:06 +00:00
|
|
|
*
|
|
|
|
* Chrome URLs are allowed to be specified in "shorthand", leaving the
|
2000-02-04 12:17:39 +00:00
|
|
|
* "file" portion off. In that case, the URL is expanded to:
|
2000-01-06 00:31:06 +00:00
|
|
|
*
|
|
|
|
* chrome://package/provider/package.ext
|
|
|
|
*
|
|
|
|
* where "ext" is:
|
|
|
|
*
|
|
|
|
* "xul" for a "content" package,
|
|
|
|
* "css" for a "skin" package, and
|
|
|
|
* "dtd" for a "locale" package.
|
|
|
|
*
|
|
|
|
* @param aChromeURL the URL that is to be converted.
|
|
|
|
*/
|
2005-02-22 21:49:45 +00:00
|
|
|
nsIURI convertChromeURL(in nsIURI aChromeURL);
|
2000-01-06 00:31:06 +00:00
|
|
|
|
2002-04-12 01:52:27 +00:00
|
|
|
/**
|
|
|
|
* refresh the chrome list at runtime, looking for new packages/etc
|
|
|
|
*/
|
|
|
|
void checkForNewChrome();
|
2008-11-14 00:00:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns whether XPCNativeWrappers are enabled for aURI.
|
|
|
|
*/
|
|
|
|
[notxpcom] boolean wrappersEnabled(in nsIURI aURI);
|
2002-04-12 01:52:27 +00:00
|
|
|
};
|
|
|
|
|
2009-12-21 10:21:52 +00:00
|
|
|
[scriptable, uuid(c2461347-2b8f-48c7-9d59-3a61fb868828)]
|
2004-09-21 20:19:48 +00:00
|
|
|
interface nsIXULChromeRegistry : nsIChromeRegistry
|
|
|
|
{
|
2002-04-12 01:52:27 +00:00
|
|
|
/* Should be called when locales change to reload all chrome (including XUL). */
|
|
|
|
void reloadChrome();
|
|
|
|
|
2002-08-20 18:12:51 +00:00
|
|
|
ACString getSelectedLocale(in ACString packageName);
|
|
|
|
|
2009-12-21 10:21:52 +00:00
|
|
|
// Get the direction of the locale via the intl.uidirection.<locale> pref
|
|
|
|
boolean isLocaleRTL(in ACString package);
|
|
|
|
|
2002-04-12 01:52:27 +00:00
|
|
|
/* Should be called when skins change. Reloads only stylesheets. */
|
|
|
|
void refreshSkins();
|
|
|
|
|
2005-02-22 21:49:45 +00:00
|
|
|
/**
|
|
|
|
* Installable skin XBL is not always granted the same privileges as other
|
|
|
|
* chrome. This asks the chrome registry whether scripts are allowed to be
|
|
|
|
* run for a particular chrome URI. Do not pass non-chrome URIs to this
|
|
|
|
* method.
|
|
|
|
*/
|
|
|
|
boolean allowScriptsForPackage(in nsIURI url);
|
2008-04-11 13:39:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Content should only be allowed to load chrome JS from certain packages.
|
|
|
|
* This method reflects the contentaccessible flag on packages.
|
|
|
|
* Do not pass non-chrome URIs to this method.
|
|
|
|
*/
|
|
|
|
boolean allowContentToAccess(in nsIURI url);
|
1999-10-26 08:13:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
%{ C++
|
|
|
|
|
2002-07-23 23:30:04 +00:00
|
|
|
#define NS_CHROMEREGISTRY_CONTRACTID \
|
|
|
|
"@mozilla.org/chrome/chrome-registry;1"
|
2004-03-09 19:59:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Chrome registry will notify various caches that all chrome files need
|
|
|
|
* flushing.
|
|
|
|
*/
|
|
|
|
#define NS_CHROME_FLUSH_TOPIC \
|
|
|
|
"chrome-flush-caches"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Chrome registry will notify various caches that skin files need flushing.
|
|
|
|
* If "chrome-flush-caches" is notified, this topic will *not* be notified.
|
|
|
|
*/
|
|
|
|
#define NS_CHROME_FLUSH_SKINS_TOPIC \
|
|
|
|
"chrome-flush-skin-caches"
|
|
|
|
|
1999-10-26 08:13:25 +00:00
|
|
|
%}
|