/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsITreeView.idl */ #ifndef __gen_nsITreeView_h__ #define __gen_nsITreeView_h__ #ifndef __gen_nsITreeBoxObject_h__ #include "nsITreeBoxObject.h" #endif #ifndef __gen_nsISupportsArray_h__ #include "nsISupportsArray.h" #endif #ifndef __gen_domstubs_h__ #include "domstubs.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsITreeSelection; /* forward declaration */ /* starting interface: nsITreeView */ #define NS_ITREEVIEW_IID_STR "58a53734-1837-4f30-9bfd-ee58f63ca049" #define NS_ITREEVIEW_IID \ {0x58a53734, 0x1837, 0x4f30, \ { 0x9b, 0xfd, 0xee, 0x58, 0xf6, 0x3c, 0xa0, 0x49 }} class NS_NO_VTABLE nsITreeView : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_ITREEVIEW_IID) /** * The total number of rows in the tree (including the offscreen rows). */ /* readonly attribute long rowCount; */ NS_IMETHOD GetRowCount(PRInt32 *aRowCount) = 0; /** * The selection for this view. */ /* attribute nsITreeSelection selection; */ NS_IMETHOD GetSelection(nsITreeSelection * *aSelection) = 0; NS_IMETHOD SetSelection(nsITreeSelection * aSelection) = 0; /** * An atomized list of properties for a given row. Each property, x, that * the view gives back will cause the pseudoclass :moz-tree-row-x * to be matched on the pseudoelement ::moz-tree-row. */ /* void getRowProperties (in long index, in nsISupportsArray properties); */ NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties) = 0; /** * An atomized list of properties for a given cell. Each property, x, that * the view gives back will cause the pseudoclass :moz-tree-cell-x * to be matched on the ::moz-tree-cell pseudoelement. */ /* void getCellProperties (in long row, in wstring colID, in nsISupportsArray properties); */ NS_IMETHOD GetCellProperties(PRInt32 row, const PRUnichar *colID, nsISupportsArray *properties) = 0; /** * Called to get properties to paint a column background. For shading the sort * column, etc. */ /* void getColumnProperties (in wstring colID, in nsIDOMElement colElt, in nsISupportsArray properties); */ NS_IMETHOD GetColumnProperties(const PRUnichar *colID, nsIDOMElement *colElt, nsISupportsArray *properties) = 0; /** * Methods that can be used to test whether or not a twisty should be drawn, * and if so, whether an open or closed twisty should be used. */ /* boolean isContainer (in long index); */ NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval) = 0; /* boolean isContainerOpen (in long index); */ NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval) = 0; /* boolean isContainerEmpty (in long index); */ NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval) = 0; /** * isSeparator is used to determine if the row at index is a separator. * A value of true will result in the tree drawing a horizontal line. * The tree uses the border properties on the ::moz-tree-separator * pseudoclass to draw the separator. */ /* boolean isSeparator (in long index); */ NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval) = 0; /** * Specifies if there is currently a sort on any column. Used mostly by dragdrop * to affect drop feedback. */ /* boolean isSorted (); */ NS_IMETHOD IsSorted(PRBool *_retval) = 0; /** * Methods used by the drag feedback code to determine if a drag is allowable at * the current location. To get the behavior where drops are only allowed on * items, such as the mailNews folder pane, always return false from |canDropBeforeAfter()|. */ /* boolean canDropOn (in long index); */ NS_IMETHOD CanDropOn(PRInt32 index, PRBool *_retval) = 0; /* boolean canDropBeforeAfter (in long index, in boolean before); */ NS_IMETHOD CanDropBeforeAfter(PRInt32 index, PRBool before, PRBool *_retval) = 0; /** * Called when the user drops something on this view. The |orientation| param * specifies before/on/after the given |row|. */ enum { inDropBefore = 0 }; enum { inDropOn = 1 }; enum { inDropAfter = 2 }; /* void drop (in long row, in long orientation); */ NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation) = 0; /** * Methods used by the tree to draw vertical lines in the tree. * GetParentIndex is used to obtain the index of a parent row. */ /* long getParentIndex (in long rowIndex); */ NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) = 0; /** * HasNextSibling is used to determine if the row at rowIndex has a nextSibling * that occurs *after* the index specified by afterIndex. Code that is forced * to march down the view looking at levels can optimize the march by starting * at afterIndex+1. */ /* boolean hasNextSibling (in long rowIndex, in long afterIndex); */ NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) = 0; /** * The level is an integer value that represents * the level of indentation. It is multiplied by the width specified in the * :moz-tree-indentation pseudoelement to compute the exact indendation. */ /* long getLevel (in long index); */ NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval) = 0; /** * The image path for a given cell. For defining an icon for a cell. * If the empty string is returned, the :moz-tree-image pseudoelement * will be used. */ /* AString getImageSrc (in long row, in wstring colID); */ NS_IMETHOD GetImageSrc(PRInt32 row, const PRUnichar *colID, nsAString & _retval) = 0; /** * The progress mode for a given cell. This method is only called for * columns of type |progressmeter|. */ enum { progressNormal = 1 }; enum { progressUndetermined = 2 }; enum { progressNone = 3 }; /* long getProgressMode (in long row, in wstring colID); */ NS_IMETHOD GetProgressMode(PRInt32 row, const PRUnichar *colID, PRInt32 *_retval) = 0; /** * The value for a given cell. This method is only called for columns * of type other than |text|. */ /* AString getCellValue (in long row, in wstring colID); */ NS_IMETHOD GetCellValue(PRInt32 row, const PRUnichar *colID, nsAString & _retval) = 0; /** * The text for a given cell. If a column consists only of an image, then * the empty string is returned. */ /* AString getCellText (in long row, in wstring colID); */ NS_IMETHOD GetCellText(PRInt32 row, const PRUnichar *colID, nsAString & _retval) = 0; /** * Called during initialization to link the view to the front end box object. */ /* void setTree (in nsITreeBoxObject tree); */ NS_IMETHOD SetTree(nsITreeBoxObject *tree) = 0; /** * Called on the view when an item is opened or closed. */ /* void toggleOpenState (in long index); */ NS_IMETHOD ToggleOpenState(PRInt32 index) = 0; /** * Called on the view when a header is clicked. */ /* void cycleHeader (in wstring colID, in nsIDOMElement elt); */ NS_IMETHOD CycleHeader(const PRUnichar *colID, nsIDOMElement *elt) = 0; /** * Should be called from a XUL onselect handler whenever the selection changes. * XXX Should this be done automatically? */ /* void selectionChanged (); */ NS_IMETHOD SelectionChanged(void) = 0; /** * Called on the view when a cell in a non-selectable cycling column (e.g., unread/flag/etc.) is clicked. */ /* void cycleCell (in long row, in wstring colID); */ NS_IMETHOD CycleCell(PRInt32 row, const PRUnichar *colID) = 0; /** * isEditable is called to ask the view if the cell contents are editable. * A value of true will result in the tree popping up a text field when * the user tries to inline edit the cell. */ /* boolean isEditable (in long row, in wstring colID); */ NS_IMETHOD IsEditable(PRInt32 row, const PRUnichar *colID, PRBool *_retval) = 0; /** * setCellText is called when the contents of the cell have been edited by the user. */ /* void setCellText (in long row, in wstring colID, in wstring value); */ NS_IMETHOD SetCellText(PRInt32 row, const PRUnichar *colID, const PRUnichar *value) = 0; /** * A command API that can be used to invoke commands on the selection. The tree * will automatically invoke this method when certain keys are pressed. For example, * when the DEL key is pressed, performAction will be called with the "delete" string. */ /* void performAction (in wstring action); */ NS_IMETHOD PerformAction(const PRUnichar *action) = 0; /** * A command API that can be used to invoke commands on a specific row. */ /* void performActionOnRow (in wstring action, in long row); */ NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row) = 0; /** * A command API that can be used to invoke commands on a specific cell. */ /* void performActionOnCell (in wstring action, in long row, in wstring colID); */ NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, const PRUnichar *colID) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSITREEVIEW \ NS_IMETHOD GetRowCount(PRInt32 *aRowCount); \ NS_IMETHOD GetSelection(nsITreeSelection * *aSelection); \ NS_IMETHOD SetSelection(nsITreeSelection * aSelection); \ NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties); \ NS_IMETHOD GetCellProperties(PRInt32 row, const PRUnichar *colID, nsISupportsArray *properties); \ NS_IMETHOD GetColumnProperties(const PRUnichar *colID, nsIDOMElement *colElt, nsISupportsArray *properties); \ NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval); \ NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval); \ NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval); \ NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval); \ NS_IMETHOD IsSorted(PRBool *_retval); \ NS_IMETHOD CanDropOn(PRInt32 index, PRBool *_retval); \ NS_IMETHOD CanDropBeforeAfter(PRInt32 index, PRBool before, PRBool *_retval); \ NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation); \ NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval); \ NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval); \ NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval); \ NS_IMETHOD GetImageSrc(PRInt32 row, const PRUnichar *colID, nsAString & _retval); \ NS_IMETHOD GetProgressMode(PRInt32 row, const PRUnichar *colID, PRInt32 *_retval); \ NS_IMETHOD GetCellValue(PRInt32 row, const PRUnichar *colID, nsAString & _retval); \ NS_IMETHOD GetCellText(PRInt32 row, const PRUnichar *colID, nsAString & _retval); \ NS_IMETHOD SetTree(nsITreeBoxObject *tree); \ NS_IMETHOD ToggleOpenState(PRInt32 index); \ NS_IMETHOD CycleHeader(const PRUnichar *colID, nsIDOMElement *elt); \ NS_IMETHOD SelectionChanged(void); \ NS_IMETHOD CycleCell(PRInt32 row, const PRUnichar *colID); \ NS_IMETHOD IsEditable(PRInt32 row, const PRUnichar *colID, PRBool *_retval); \ NS_IMETHOD SetCellText(PRInt32 row, const PRUnichar *colID, const PRUnichar *value); \ NS_IMETHOD PerformAction(const PRUnichar *action); \ NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row); \ NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, const PRUnichar *colID); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSITREEVIEW(_to) \ NS_IMETHOD GetRowCount(PRInt32 *aRowCount) { return _to GetRowCount(aRowCount); } \ NS_IMETHOD GetSelection(nsITreeSelection * *aSelection) { return _to GetSelection(aSelection); } \ NS_IMETHOD SetSelection(nsITreeSelection * aSelection) { return _to SetSelection(aSelection); } \ NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties) { return _to GetRowProperties(index, properties); } \ NS_IMETHOD GetCellProperties(PRInt32 row, const PRUnichar *colID, nsISupportsArray *properties) { return _to GetCellProperties(row, colID, properties); } \ NS_IMETHOD GetColumnProperties(const PRUnichar *colID, nsIDOMElement *colElt, nsISupportsArray *properties) { return _to GetColumnProperties(colID, colElt, properties); } \ NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval) { return _to IsContainer(index, _retval); } \ NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval) { return _to IsContainerOpen(index, _retval); } \ NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval) { return _to IsContainerEmpty(index, _retval); } \ NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval) { return _to IsSeparator(index, _retval); } \ NS_IMETHOD IsSorted(PRBool *_retval) { return _to IsSorted(_retval); } \ NS_IMETHOD CanDropOn(PRInt32 index, PRBool *_retval) { return _to CanDropOn(index, _retval); } \ NS_IMETHOD CanDropBeforeAfter(PRInt32 index, PRBool before, PRBool *_retval) { return _to CanDropBeforeAfter(index, before, _retval); } \ NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation) { return _to Drop(row, orientation); } \ NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) { return _to GetParentIndex(rowIndex, _retval); } \ NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) { return _to HasNextSibling(rowIndex, afterIndex, _retval); } \ NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval) { return _to GetLevel(index, _retval); } \ NS_IMETHOD GetImageSrc(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return _to GetImageSrc(row, colID, _retval); } \ NS_IMETHOD GetProgressMode(PRInt32 row, const PRUnichar *colID, PRInt32 *_retval) { return _to GetProgressMode(row, colID, _retval); } \ NS_IMETHOD GetCellValue(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return _to GetCellValue(row, colID, _retval); } \ NS_IMETHOD GetCellText(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return _to GetCellText(row, colID, _retval); } \ NS_IMETHOD SetTree(nsITreeBoxObject *tree) { return _to SetTree(tree); } \ NS_IMETHOD ToggleOpenState(PRInt32 index) { return _to ToggleOpenState(index); } \ NS_IMETHOD CycleHeader(const PRUnichar *colID, nsIDOMElement *elt) { return _to CycleHeader(colID, elt); } \ NS_IMETHOD SelectionChanged(void) { return _to SelectionChanged(); } \ NS_IMETHOD CycleCell(PRInt32 row, const PRUnichar *colID) { return _to CycleCell(row, colID); } \ NS_IMETHOD IsEditable(PRInt32 row, const PRUnichar *colID, PRBool *_retval) { return _to IsEditable(row, colID, _retval); } \ NS_IMETHOD SetCellText(PRInt32 row, const PRUnichar *colID, const PRUnichar *value) { return _to SetCellText(row, colID, value); } \ NS_IMETHOD PerformAction(const PRUnichar *action) { return _to PerformAction(action); } \ NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row) { return _to PerformActionOnRow(action, row); } \ NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, const PRUnichar *colID) { return _to PerformActionOnCell(action, row, colID); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSITREEVIEW(_to) \ NS_IMETHOD GetRowCount(PRInt32 *aRowCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRowCount(aRowCount); } \ NS_IMETHOD GetSelection(nsITreeSelection * *aSelection) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelection(aSelection); } \ NS_IMETHOD SetSelection(nsITreeSelection * aSelection) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelection(aSelection); } \ NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRowProperties(index, properties); } \ NS_IMETHOD GetCellProperties(PRInt32 row, const PRUnichar *colID, nsISupportsArray *properties) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCellProperties(row, colID, properties); } \ NS_IMETHOD GetColumnProperties(const PRUnichar *colID, nsIDOMElement *colElt, nsISupportsArray *properties) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColumnProperties(colID, colElt, properties); } \ NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsContainer(index, _retval); } \ NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsContainerOpen(index, _retval); } \ NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsContainerEmpty(index, _retval); } \ NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsSeparator(index, _retval); } \ NS_IMETHOD IsSorted(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsSorted(_retval); } \ NS_IMETHOD CanDropOn(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CanDropOn(index, _retval); } \ NS_IMETHOD CanDropBeforeAfter(PRInt32 index, PRBool before, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CanDropBeforeAfter(index, before, _retval); } \ NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation) { return !_to ? NS_ERROR_NULL_POINTER : _to->Drop(row, orientation); } \ NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetParentIndex(rowIndex, _retval); } \ NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->HasNextSibling(rowIndex, afterIndex, _retval); } \ NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLevel(index, _retval); } \ NS_IMETHOD GetImageSrc(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageSrc(row, colID, _retval); } \ NS_IMETHOD GetProgressMode(PRInt32 row, const PRUnichar *colID, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProgressMode(row, colID, _retval); } \ NS_IMETHOD GetCellValue(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCellValue(row, colID, _retval); } \ NS_IMETHOD GetCellText(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCellText(row, colID, _retval); } \ NS_IMETHOD SetTree(nsITreeBoxObject *tree) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTree(tree); } \ NS_IMETHOD ToggleOpenState(PRInt32 index) { return !_to ? NS_ERROR_NULL_POINTER : _to->ToggleOpenState(index); } \ NS_IMETHOD CycleHeader(const PRUnichar *colID, nsIDOMElement *elt) { return !_to ? NS_ERROR_NULL_POINTER : _to->CycleHeader(colID, elt); } \ NS_IMETHOD SelectionChanged(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SelectionChanged(); } \ NS_IMETHOD CycleCell(PRInt32 row, const PRUnichar *colID) { return !_to ? NS_ERROR_NULL_POINTER : _to->CycleCell(row, colID); } \ NS_IMETHOD IsEditable(PRInt32 row, const PRUnichar *colID, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsEditable(row, colID, _retval); } \ NS_IMETHOD SetCellText(PRInt32 row, const PRUnichar *colID, const PRUnichar *value) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCellText(row, colID, value); } \ NS_IMETHOD PerformAction(const PRUnichar *action) { return !_to ? NS_ERROR_NULL_POINTER : _to->PerformAction(action); } \ NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row) { return !_to ? NS_ERROR_NULL_POINTER : _to->PerformActionOnRow(action, row); } \ NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, const PRUnichar *colID) { return !_to ? NS_ERROR_NULL_POINTER : _to->PerformActionOnCell(action, row, colID); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsTreeView : public nsITreeView { public: NS_DECL_ISUPPORTS NS_DECL_NSITREEVIEW nsTreeView(); virtual ~nsTreeView(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsTreeView, nsITreeView) nsTreeView::nsTreeView() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsTreeView::~nsTreeView() { /* destructor code */ } /* readonly attribute long rowCount; */ NS_IMETHODIMP nsTreeView::GetRowCount(PRInt32 *aRowCount) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute nsITreeSelection selection; */ NS_IMETHODIMP nsTreeView::GetSelection(nsITreeSelection * *aSelection) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsTreeView::SetSelection(nsITreeSelection * aSelection) { return NS_ERROR_NOT_IMPLEMENTED; } /* void getRowProperties (in long index, in nsISupportsArray properties); */ NS_IMETHODIMP nsTreeView::GetRowProperties(PRInt32 index, nsISupportsArray *properties) { return NS_ERROR_NOT_IMPLEMENTED; } /* void getCellProperties (in long row, in wstring colID, in nsISupportsArray properties); */ NS_IMETHODIMP nsTreeView::GetCellProperties(PRInt32 row, const PRUnichar *colID, nsISupportsArray *properties) { return NS_ERROR_NOT_IMPLEMENTED; } /* void getColumnProperties (in wstring colID, in nsIDOMElement colElt, in nsISupportsArray properties); */ NS_IMETHODIMP nsTreeView::GetColumnProperties(const PRUnichar *colID, nsIDOMElement *colElt, nsISupportsArray *properties) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isContainer (in long index); */ NS_IMETHODIMP nsTreeView::IsContainer(PRInt32 index, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isContainerOpen (in long index); */ NS_IMETHODIMP nsTreeView::IsContainerOpen(PRInt32 index, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isContainerEmpty (in long index); */ NS_IMETHODIMP nsTreeView::IsContainerEmpty(PRInt32 index, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isSeparator (in long index); */ NS_IMETHODIMP nsTreeView::IsSeparator(PRInt32 index, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isSorted (); */ NS_IMETHODIMP nsTreeView::IsSorted(PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean canDropOn (in long index); */ NS_IMETHODIMP nsTreeView::CanDropOn(PRInt32 index, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean canDropBeforeAfter (in long index, in boolean before); */ NS_IMETHODIMP nsTreeView::CanDropBeforeAfter(PRInt32 index, PRBool before, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* void drop (in long row, in long orientation); */ NS_IMETHODIMP nsTreeView::Drop(PRInt32 row, PRInt32 orientation) { return NS_ERROR_NOT_IMPLEMENTED; } /* long getParentIndex (in long rowIndex); */ NS_IMETHODIMP nsTreeView::GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean hasNextSibling (in long rowIndex, in long afterIndex); */ NS_IMETHODIMP nsTreeView::HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* long getLevel (in long index); */ NS_IMETHODIMP nsTreeView::GetLevel(PRInt32 index, PRInt32 *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* AString getImageSrc (in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::GetImageSrc(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* long getProgressMode (in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::GetProgressMode(PRInt32 row, const PRUnichar *colID, PRInt32 *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* AString getCellValue (in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::GetCellValue(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* AString getCellText (in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::GetCellText(PRInt32 row, const PRUnichar *colID, nsAString & _retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* void setTree (in nsITreeBoxObject tree); */ NS_IMETHODIMP nsTreeView::SetTree(nsITreeBoxObject *tree) { return NS_ERROR_NOT_IMPLEMENTED; } /* void toggleOpenState (in long index); */ NS_IMETHODIMP nsTreeView::ToggleOpenState(PRInt32 index) { return NS_ERROR_NOT_IMPLEMENTED; } /* void cycleHeader (in wstring colID, in nsIDOMElement elt); */ NS_IMETHODIMP nsTreeView::CycleHeader(const PRUnichar *colID, nsIDOMElement *elt) { return NS_ERROR_NOT_IMPLEMENTED; } /* void selectionChanged (); */ NS_IMETHODIMP nsTreeView::SelectionChanged() { return NS_ERROR_NOT_IMPLEMENTED; } /* void cycleCell (in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::CycleCell(PRInt32 row, const PRUnichar *colID) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isEditable (in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::IsEditable(PRInt32 row, const PRUnichar *colID, PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* void setCellText (in long row, in wstring colID, in wstring value); */ NS_IMETHODIMP nsTreeView::SetCellText(PRInt32 row, const PRUnichar *colID, const PRUnichar *value) { return NS_ERROR_NOT_IMPLEMENTED; } /* void performAction (in wstring action); */ NS_IMETHODIMP nsTreeView::PerformAction(const PRUnichar *action) { return NS_ERROR_NOT_IMPLEMENTED; } /* void performActionOnRow (in wstring action, in long row); */ NS_IMETHODIMP nsTreeView::PerformActionOnRow(const PRUnichar *action, PRInt32 row) { return NS_ERROR_NOT_IMPLEMENTED; } /* void performActionOnCell (in wstring action, in long row, in wstring colID); */ NS_IMETHODIMP nsTreeView::PerformActionOnCell(const PRUnichar *action, PRInt32 row, const PRUnichar *colID) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif // Initializer, #endif /* __gen_nsITreeView_h__ */ .