2002-01-12 01:18:10 +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/. */
|
2002-01-12 01:18:10 +00:00
|
|
|
|
2013-09-22 23:24:27 +00:00
|
|
|
#include "nsISupports.idl"
|
2002-01-12 01:18:10 +00:00
|
|
|
|
2014-10-14 20:15:21 +00:00
|
|
|
// DEPRECATED: see ListBoxObject.webidl
|
|
|
|
|
2002-01-12 01:18:10 +00:00
|
|
|
interface nsIDOMElement;
|
|
|
|
|
2014-10-14 20:15:21 +00:00
|
|
|
[uuid(AA9DEF4E-2E59-412d-A6DF-B76F52167795)]
|
2002-01-12 01:18:10 +00:00
|
|
|
interface nsIListBoxObject : nsISupports
|
|
|
|
{
|
|
|
|
long getRowCount();
|
|
|
|
|
|
|
|
nsIDOMElement getItemAtIndex(in long index);
|
|
|
|
long getIndexOfItem(in nsIDOMElement item);
|
|
|
|
};
|