/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIScrollBoxObject.idl */ #ifndef __gen_nsIScrollBoxObject_h__ #define __gen_nsIScrollBoxObject_h__ #ifndef __gen_nsIBoxObject_h__ #include "nsIBoxObject.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsIDOMElement; /* forward declaration */ /* starting interface: nsIScrollBoxObject */ #define NS_ISCROLLBOXOBJECT_IID_STR "56e2ada8-4631-11d4-ba11-001083023c1e" #define NS_ISCROLLBOXOBJECT_IID \ {0x56e2ada8, 0x4631, 0x11d4, \ { 0xba, 0x11, 0x00, 0x10, 0x83, 0x02, 0x3c, 0x1e }} class NS_NO_VTABLE nsIScrollBoxObject : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISCROLLBOXOBJECT_IID) /* void scrollTo (in long x, in long y); */ NS_IMETHOD ScrollTo(PRInt32 x, PRInt32 y) = 0; /* void scrollBy (in long dx, in long dy); */ NS_IMETHOD ScrollBy(PRInt32 dx, PRInt32 dy) = 0; /* void scrollByLine (in long dlines); */ NS_IMETHOD ScrollByLine(PRInt32 dlines) = 0; /* void scrollByIndex (in long dindexes); */ NS_IMETHOD ScrollByIndex(PRInt32 dindexes) = 0; /* void scrollToLine (in long line); */ NS_IMETHOD ScrollToLine(PRInt32 line) = 0; /* void scrollToElement (in nsIDOMElement child); */ NS_IMETHOD ScrollToElement(nsIDOMElement *child) = 0; /* void scrollToIndex (in long index); */ NS_IMETHOD ScrollToIndex(PRInt32 index) = 0; /* void getPosition (out long x, out long y); */ NS_IMETHOD GetPosition(PRInt32 *x, PRInt32 *y) = 0; /* void getScrolledSize (out long width, out long height); */ NS_IMETHOD GetScrolledSize(PRInt32 *width, PRInt32 *height) = 0; /* void ensureElementIsVisible (in nsIDOMElement child); */ NS_IMETHOD EnsureElementIsVisible(nsIDOMElement *child) = 0; /* void ensureIndexIsVisible (in long index); */ NS_IMETHOD EnsureIndexIsVisible(PRInt32 index) = 0; /* void ensureLineIsVisible (in long line); */ NS_IMETHOD EnsureLineIsVisible(PRInt32 line) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSISCROLLBOXOBJECT \ NS_IMETHOD ScrollTo(PRInt32 x, PRInt32 y); \ NS_IMETHOD ScrollBy(PRInt32 dx, PRInt32 dy); \ NS_IMETHOD ScrollByLine(PRInt32 dlines); \ NS_IMETHOD ScrollByIndex(PRInt32 dindexes); \ NS_IMETHOD ScrollToLine(PRInt32 line); \ NS_IMETHOD ScrollToElement(nsIDOMElement *child); \ NS_IMETHOD ScrollToIndex(PRInt32 index); \ NS_IMETHOD GetPosition(PRInt32 *x, PRInt32 *y); \ NS_IMETHOD GetScrolledSize(PRInt32 *width, PRInt32 *height); \ NS_IMETHOD EnsureElementIsVisible(nsIDOMElement *child); \ NS_IMETHOD EnsureIndexIsVisible(PRInt32 index); \ NS_IMETHOD EnsureLineIsVisible(PRInt32 line); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSISCROLLBOXOBJECT(_to) \ NS_IMETHOD ScrollTo(PRInt32 x, PRInt32 y) { return _to ScrollTo(x, y); } \ NS_IMETHOD ScrollBy(PRInt32 dx, PRInt32 dy) { return _to ScrollBy(dx, dy); } \ NS_IMETHOD ScrollByLine(PRInt32 dlines) { return _to ScrollByLine(dlines); } \ NS_IMETHOD ScrollByIndex(PRInt32 dindexes) { return _to ScrollByIndex(dindexes); } \ NS_IMETHOD ScrollToLine(PRInt32 line) { return _to ScrollToLine(line); } \ NS_IMETHOD ScrollToElement(nsIDOMElement *child) { return _to ScrollToElement(child); } \ NS_IMETHOD ScrollToIndex(PRInt32 index) { return _to ScrollToIndex(index); } \ NS_IMETHOD GetPosition(PRInt32 *x, PRInt32 *y) { return _to GetPosition(x, y); } \ NS_IMETHOD GetScrolledSize(PRInt32 *width, PRInt32 *height) { return _to GetScrolledSize(width, height); } \ NS_IMETHOD EnsureElementIsVisible(nsIDOMElement *child) { return _to EnsureElementIsVisible(child); } \ NS_IMETHOD EnsureIndexIsVisible(PRInt32 index) { return _to EnsureIndexIsVisible(index); } \ NS_IMETHOD EnsureLineIsVisible(PRInt32 line) { return _to EnsureLineIsVisible(line); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSISCROLLBOXOBJECT(_to) \ NS_IMETHOD ScrollTo(PRInt32 x, PRInt32 y) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollTo(x, y); } \ NS_IMETHOD ScrollBy(PRInt32 dx, PRInt32 dy) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollBy(dx, dy); } \ NS_IMETHOD ScrollByLine(PRInt32 dlines) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollByLine(dlines); } \ NS_IMETHOD ScrollByIndex(PRInt32 dindexes) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollByIndex(dindexes); } \ NS_IMETHOD ScrollToLine(PRInt32 line) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollToLine(line); } \ NS_IMETHOD ScrollToElement(nsIDOMElement *child) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollToElement(child); } \ NS_IMETHOD ScrollToIndex(PRInt32 index) { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollToIndex(index); } \ NS_IMETHOD GetPosition(PRInt32 *x, PRInt32 *y) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPosition(x, y); } \ NS_IMETHOD GetScrolledSize(PRInt32 *width, PRInt32 *height) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetScrolledSize(width, height); } \ NS_IMETHOD EnsureElementIsVisible(nsIDOMElement *child) { return !_to ? NS_ERROR_NULL_POINTER : _to->EnsureElementIsVisible(child); } \ NS_IMETHOD EnsureIndexIsVisible(PRInt32 index) { return !_to ? NS_ERROR_NULL_POINTER : _to->EnsureIndexIsVisible(index); } \ NS_IMETHOD EnsureLineIsVisible(PRInt32 line) { return !_to ? NS_ERROR_NULL_POINTER : _to->EnsureLineIsVisible(line); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsScrollBoxObject : public nsIScrollBoxObject { public: NS_DECL_ISUPPORTS NS_DECL_NSISCROLLBOXOBJECT nsScrollBoxObject(); virtual ~nsScrollBoxObject(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsScrollBoxObject, nsIScrollBoxObject) nsScrollBoxObject::nsScrollBoxObject() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsScrollBoxObject::~nsScrollBoxObject() { /* destructor code */ } /* void scrollTo (in long x, in long y); */ NS_IMETHODIMP nsScrollBoxObject::ScrollTo(PRInt32 x, PRInt32 y) { return NS_ERROR_NOT_IMPLEMENTED; } /* void scrollBy (in long dx, in long dy); */ NS_IMETHODIMP nsScrollBoxObject::ScrollBy(PRInt32 dx, PRInt32 dy) { return NS_ERROR_NOT_IMPLEMENTED; } /* void scrollByLine (in long dlines); */ NS_IMETHODIMP nsScrollBoxObject::ScrollByLine(PRInt32 dlines) { return NS_ERROR_NOT_IMPLEMENTED; } /* void scrollByIndex (in long dindexes); */ NS_IMETHODIMP nsScrollBoxObject::ScrollByIndex(PRInt32 dindexes) { return NS_ERROR_NOT_IMPLEMENTED; } /* void scrollToLine (in long line); */ NS_IMETHODIMP nsScrollBoxObject::ScrollToLine(PRInt32 line) { return NS_ERROR_NOT_IMPLEMENTED; } /* void scrollToElement (in nsIDOMElement child); */ NS_IMETHODIMP nsScrollBoxObject::ScrollToElement(nsIDOMElement *child) { return NS_ERROR_NOT_IMPLEMENTED; } /* void scrollToIndex (in long index); */ NS_IMETHODIMP nsScrollBoxObject::ScrollToIndex(PRInt32 index) { return NS_ERROR_NOT_IMPLEMENTED; } /* void getPosition (out long x, out long y); */ NS_IMETHODIMP nsScrollBoxObject::GetPosition(PRInt32 *x, PRInt32 *y) { return NS_ERROR_NOT_IMPLEMENTED; } /* void getScrolledSize (out long width, out long height); */ NS_IMETHODIMP nsScrollBoxObject::GetScrolledSize(PRInt32 *width, PRInt32 *height) { return NS_ERROR_NOT_IMPLEMENTED; } /* void ensureElementIsVisible (in nsIDOMElement child); */ NS_IMETHODIMP nsScrollBoxObject::EnsureElementIsVisible(nsIDOMElement *child) { return NS_ERROR_NOT_IMPLEMENTED; } /* void ensureIndexIsVisible (in long index); */ NS_IMETHODIMP nsScrollBoxObject::EnsureIndexIsVisible(PRInt32 index) { return NS_ERROR_NOT_IMPLEMENTED; } /* void ensureLineIsVisible (in long line); */ NS_IMETHODIMP nsScrollBoxObject::EnsureLineIsVisible(PRInt32 line) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif nsresult NS_NewScrollBoxObject(nsIBoxObject** aResult); #endif /* __gen_nsIScrollBoxObject_h__ */ .