| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/xulrunner-sdk-1.9.1/docshell/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM nsIGlobalHistory2.idl
*/
#ifndef __gen_nsIGlobalHistory2_h__
#define __gen_nsIGlobalHistory2_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIURI; /* forward declaration */
// nsIObserver topic to fire when you add new visited URIs to the history;
// the nsIURI is the subject
#define NS_LINK_VISITED_EVENT_TOPIC "link-visited"
/* starting interface: nsIGlobalHistory2 */
#define NS_IGLOBALHISTORY2_IID_STR "cf777d42-1270-4b34-be7b-2931c93feda5"
#define NS_IGLOBALHISTORY2_IID \
{0xcf777d42, 0x1270, 0x4b34, \
{ 0xbe, 0x7b, 0x29, 0x31, 0xc9, 0x3f, 0xed, 0xa5 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIGlobalHistory2 : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IGLOBALHISTORY2_IID)
/**
* Add a URI to global history
*
* @param aURI the URI of the page
* @param aRedirect whether the URI was redirected to another location;
* this is 'true' for the original URI which is
* redirected.
* @param aToplevel whether the URI is loaded in a top-level window
* @param aReferrer the URI of the referring page
*
* @note Docshell will not filter out URI schemes like chrome: data:
* about: and view-source:. Embedders should consider filtering out
* these schemes and others, e.g. mailbox: for the main URI and the
* referrer.
*/
/* void addURI (in nsIURI aURI, in boolean aRedirect, in boolean aToplevel, in nsIURI aReferrer); */
NS_SCRIPTABLE NS_IMETHOD AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel, nsIURI *aReferrer) = 0;
/**
* Checks to see whether the given URI is in history.
*
* @param aURI the uri to the page
* @return true if a URI has been visited
*/
/* boolean isVisited (in nsIURI aURI); */
NS_SCRIPTABLE NS_IMETHOD IsVisited(nsIURI *aURI, PRBool *_retval NS_OUTPARAM) = 0;
/**
* Set the page title for the given uri. URIs that are not already in
* global history will not be added.
*
* @param aURI the URI for which to set to the title
* @param aTitle the page title
*/
/* void setPageTitle (in nsIURI aURI, in AString aTitle); */
NS_SCRIPTABLE NS_IMETHOD SetPageTitle(nsIURI *aURI, const nsAString & aTitle) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIGlobalHistory2, NS_IGLOBALHISTORY2_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIGLOBALHISTORY2 \
NS_SCRIPTABLE NS_IMETHOD AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel, nsIURI *aReferrer); \
NS_SCRIPTABLE NS_IMETHOD IsVisited(nsIURI *aURI, PRBool *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD SetPageTitle(nsIURI *aURI, const nsAString & aTitle);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIGLOBALHISTORY2(_to) \
NS_SCRIPTABLE NS_IMETHOD AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel, nsIURI *aReferrer) { return _to AddURI(aURI, aRedirect, aToplevel, aReferrer); } \
NS_SCRIPTABLE NS_IMETHOD IsVisited(nsIURI *aURI, PRBool *_retval NS_OUTPARAM) { return _to IsVisited(aURI, _retval); } \
NS_SCRIPTABLE NS_IMETHOD SetPageTitle(nsIURI *aURI, const nsAString & aTitle) { return _to SetPageTitle(aURI, aTitle); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIGLOBALHISTORY2(_to) \
NS_SCRIPTABLE NS_IMETHOD AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel, nsIURI *aReferrer) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddURI(aURI, aRedirect, aToplevel, aReferrer); } \
NS_SCRIPTABLE NS_IMETHOD IsVisited(nsIURI *aURI, PRBool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsVisited(aURI, _retval); } \
NS_SCRIPTABLE NS_IMETHOD SetPageTitle(nsIURI *aURI, const nsAString & aTitle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPageTitle(aURI, aTitle); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsGlobalHistory2 : public nsIGlobalHistory2
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIGLOBALHISTORY2
nsGlobalHistory2();
private:
~nsGlobalHistory2();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsGlobalHistory2, nsIGlobalHistory2)
nsGlobalHistory2::nsGlobalHistory2()
{
/* member initializers and constructor code */
}
nsGlobalHistory2::~nsGlobalHistory2()
{
/* destructor code */
}
/* void addURI (in nsIURI aURI, in boolean aRedirect, in boolean aToplevel, in nsIURI aReferrer); */
NS_IMETHODIMP nsGlobalHistory2::AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel, nsIURI *aReferrer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isVisited (in nsIURI aURI); */
NS_IMETHODIMP nsGlobalHistory2::IsVisited(nsIURI *aURI, PRBool *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPageTitle (in nsIURI aURI, in AString aTitle); */
NS_IMETHODIMP nsGlobalHistory2::SetPageTitle(nsIURI *aURI, const nsAString & aTitle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIGlobalHistory2_h__ */