1998-09-02 00:56:01 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS"
|
|
|
|
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
|
|
* the License for the specific language governing rights and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
#include "nsIDOMHTMLOptionElement.h"
|
1999-03-02 03:26:29 +00:00
|
|
|
#include "nsIDOMHTMLOptGroupElement.h"
|
1998-09-23 17:16:51 +00:00
|
|
|
#include "nsIDOMHTMLFormElement.h"
|
1998-09-02 00:56:01 +00:00
|
|
|
#include "nsIScriptObjectOwner.h"
|
|
|
|
#include "nsIDOMEventReceiver.h"
|
|
|
|
#include "nsIHTMLContent.h"
|
1998-09-02 23:53:16 +00:00
|
|
|
#include "nsGenericHTMLElement.h"
|
1998-09-02 00:56:01 +00:00
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsHTMLIIDs.h"
|
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIPresContext.h"
|
1998-09-23 17:16:51 +00:00
|
|
|
#include "nsIFormControl.h"
|
|
|
|
#include "nsIForm.h"
|
|
|
|
#include "nsIDOMText.h"
|
1999-04-08 23:47:49 +00:00
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsGenericElement.h"
|
|
|
|
#include "nsIDOMHTMLCollection.h"
|
1998-09-02 00:56:01 +00:00
|
|
|
|
1999-01-30 01:02:28 +00:00
|
|
|
// Notify/query select frame for selected state
|
|
|
|
#include "nsIFormControlFrame.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIDOMHTMLSelectElement.h"
|
|
|
|
|
|
|
|
|
|
|
|
static NS_DEFINE_IID(kIDOMHTMLSelectElementIID, NS_IDOMHTMLSELECTELEMENT_IID);
|
1998-09-02 00:56:01 +00:00
|
|
|
static NS_DEFINE_IID(kIDOMHTMLOptionElementIID, NS_IDOMHTMLOPTIONELEMENT_IID);
|
1999-03-02 03:26:29 +00:00
|
|
|
static NS_DEFINE_IID(kIDOMHTMLOptGroupElementIID, NS_IDOMHTMLOPTIONELEMENT_IID);
|
1998-09-23 17:16:51 +00:00
|
|
|
static NS_DEFINE_IID(kIDOMHTMLFormElementIID, NS_IDOMHTMLFORMELEMENT_IID);
|
|
|
|
static NS_DEFINE_IID(kIDOMTextIID, NS_IDOMTEXT_IID);
|
|
|
|
static NS_DEFINE_IID(kIFormControlIID, NS_IFORMCONTROL_IID);
|
|
|
|
static NS_DEFINE_IID(kIFormIID, NS_IFORM_IID);
|
1999-01-30 01:02:28 +00:00
|
|
|
static NS_DEFINE_IID(kIFormControlFrameIID, NS_IFORMCONTROLFRAME_IID);
|
1998-09-02 00:56:01 +00:00
|
|
|
|
1998-09-02 23:53:16 +00:00
|
|
|
class nsHTMLOptionElement : public nsIDOMHTMLOptionElement,
|
1998-09-02 00:56:01 +00:00
|
|
|
public nsIScriptObjectOwner,
|
|
|
|
public nsIDOMEventReceiver,
|
|
|
|
public nsIHTMLContent
|
1998-09-23 17:16:51 +00:00
|
|
|
//public nsIFormControl
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
|
|
|
public:
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement(nsIAtom* aTag);
|
1999-02-12 17:45:58 +00:00
|
|
|
virtual ~nsHTMLOptionElement();
|
1998-09-02 00:56:01 +00:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIDOMNode
|
|
|
|
NS_IMPL_IDOMNODE_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
// nsIDOMElement
|
|
|
|
NS_IMPL_IDOMELEMENT_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
// nsIDOMHTMLElement
|
|
|
|
NS_IMPL_IDOMHTMLELEMENT_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
// nsIDOMHTMLOptionElement
|
|
|
|
NS_IMETHOD GetForm(nsIDOMHTMLFormElement** aForm);
|
|
|
|
NS_IMETHOD GetDefaultSelected(PRBool* aDefaultSelected);
|
|
|
|
NS_IMETHOD SetDefaultSelected(PRBool aDefaultSelected);
|
|
|
|
NS_IMETHOD GetText(nsString& aText);
|
|
|
|
NS_IMETHOD GetIndex(PRInt32* aIndex);
|
|
|
|
NS_IMETHOD SetIndex(PRInt32 aIndex);
|
|
|
|
NS_IMETHOD GetDisabled(PRBool* aDisabled);
|
|
|
|
NS_IMETHOD SetDisabled(PRBool aDisabled);
|
|
|
|
NS_IMETHOD GetLabel(nsString& aLabel);
|
|
|
|
NS_IMETHOD SetLabel(const nsString& aLabel);
|
|
|
|
NS_IMETHOD GetSelected(PRBool* aSelected);
|
|
|
|
NS_IMETHOD GetValue(nsString& aValue);
|
|
|
|
NS_IMETHOD SetValue(const nsString& aValue);
|
|
|
|
|
|
|
|
// nsIScriptObjectOwner
|
|
|
|
NS_IMPL_ISCRIPTOBJECTOWNER_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
// nsIDOMEventReceiver
|
|
|
|
NS_IMPL_IDOMEVENTRECEIVER_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
// nsIContent
|
|
|
|
NS_IMPL_ICONTENT_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
// nsIHTMLContent
|
|
|
|
NS_IMPL_IHTMLCONTENT_USING_GENERIC(mInner)
|
|
|
|
|
|
|
|
protected:
|
1998-09-03 22:21:32 +00:00
|
|
|
nsGenericHTMLContainerElement mInner;
|
1999-01-30 01:02:28 +00:00
|
|
|
|
1999-04-08 23:47:49 +00:00
|
|
|
// Get the primary frame associated with this content
|
1999-01-30 01:02:28 +00:00
|
|
|
nsresult GetPrimaryFrame(nsIFormControlFrame *&aFormControlFrame);
|
1999-04-08 23:47:49 +00:00
|
|
|
|
|
|
|
// Get the select content element that contains this option
|
|
|
|
nsresult GetSelect(nsIDOMHTMLSelectElement *&aSelectElement);
|
1998-09-02 00:56:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nsresult
|
1998-09-02 23:53:16 +00:00
|
|
|
NS_NewHTMLOptionElement(nsIHTMLContent** aInstancePtrResult, nsIAtom* aTag)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aInstancePtrResult, "null ptr");
|
|
|
|
if (nsnull == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1998-09-02 23:53:16 +00:00
|
|
|
nsIHTMLContent* it = new nsHTMLOptionElement(aTag);
|
1998-09-02 00:56:01 +00:00
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return it->QueryInterface(kIHTMLContentIID, (void**) aInstancePtrResult);
|
|
|
|
}
|
|
|
|
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::nsHTMLOptionElement(nsIAtom* aTag)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
mInner.Init(this, aTag);
|
|
|
|
}
|
|
|
|
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::~nsHTMLOptionElement()
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
// ISupports
|
1998-09-02 00:56:01 +00:00
|
|
|
|
1999-05-04 18:38:21 +00:00
|
|
|
NS_IMPL_ADDREF(nsHTMLOptionElement)
|
1998-09-02 00:56:01 +00:00
|
|
|
|
|
|
|
nsresult
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
|
|
|
NS_IMPL_HTML_CONTENT_QUERY_INTERFACE(aIID, aInstancePtr, this)
|
|
|
|
if (aIID.Equals(kIDOMHTMLOptionElementIID)) {
|
1998-09-23 17:16:51 +00:00
|
|
|
*aInstancePtr = (void*)(nsIDOMHTMLOptionElement*) this;
|
|
|
|
mRefCnt++;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-09-02 00:56:01 +00:00
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
1998-09-29 23:22:42 +00:00
|
|
|
// the option has a ref to the form, but not vice versa. The form can get to the
|
1998-09-23 17:16:51 +00:00
|
|
|
// options via the select.
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsHTMLOptionElement::Release()
|
|
|
|
{
|
|
|
|
--mRefCnt;
|
|
|
|
if (mRefCnt <= 0) {
|
|
|
|
delete this;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return mRefCnt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-09-02 00:56:01 +00:00
|
|
|
nsresult
|
1998-10-20 17:07:23 +00:00
|
|
|
nsHTMLOptionElement::CloneNode(PRBool aDeep, nsIDOMNode** aReturn)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement* it = new nsHTMLOptionElement(mInner.mTag);
|
1998-09-02 00:56:01 +00:00
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
1999-01-14 23:14:02 +00:00
|
|
|
mInner.CopyInnerTo(this, &it->mInner, aDeep);
|
1998-09-02 00:56:01 +00:00
|
|
|
return it->QueryInterface(kIDOMNodeIID, (void**) aReturn);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::GetForm(nsIDOMHTMLFormElement** aForm)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
1999-04-27 19:58:15 +00:00
|
|
|
nsIDOMHTMLSelectElement* selectElement = nsnull;
|
|
|
|
nsresult res = GetSelect(selectElement);
|
|
|
|
if (NS_OK == res) {
|
|
|
|
nsIFormControl* selectControl = nsnull;
|
|
|
|
res = selectElement->QueryInterface(kIFormControlIID, (void**)&selectControl);
|
|
|
|
NS_RELEASE(selectElement);
|
|
|
|
|
|
|
|
if (NS_OK == res) {
|
|
|
|
res = selectControl->GetForm(aForm);
|
|
|
|
NS_RELEASE(selectControl);
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
1999-04-27 19:58:15 +00:00
|
|
|
return res;
|
1998-09-02 00:56:01 +00:00
|
|
|
}
|
|
|
|
|
1999-01-30 01:02:28 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::GetSelected(PRBool* aValue)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
1999-01-30 01:02:28 +00:00
|
|
|
nsIFormControlFrame* formControlFrame = nsnull;
|
1999-03-02 22:43:26 +00:00
|
|
|
nsresult rv = GetPrimaryFrame(formControlFrame);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
1999-01-30 01:02:28 +00:00
|
|
|
PRInt32 index;
|
|
|
|
if (NS_OK == GetIndex(&index)) {
|
|
|
|
nsString value;
|
|
|
|
value.Append(index, 10); // Save the index in base 10
|
|
|
|
formControlFrame->GetProperty(nsHTMLAtoms::selected, value);
|
|
|
|
if (value == "1")
|
|
|
|
*aValue = PR_TRUE;
|
|
|
|
else
|
|
|
|
*aValue = PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
1999-03-02 22:43:26 +00:00
|
|
|
return rv;
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
1999-01-30 01:02:28 +00:00
|
|
|
//NS_IMPL_BOOL_ATTR(nsHTMLOptionElement, DefaultSelected, defaultselected)
|
1999-04-08 23:47:49 +00:00
|
|
|
//NS_IMPL_INT_ATTR(nsHTMLOptionElement, Index, index)
|
1998-11-03 01:08:02 +00:00
|
|
|
NS_IMPL_BOOL_ATTR(nsHTMLOptionElement, Disabled, disabled)
|
|
|
|
NS_IMPL_STRING_ATTR(nsHTMLOptionElement, Label, label)
|
|
|
|
NS_IMPL_STRING_ATTR(nsHTMLOptionElement, Value, value)
|
1998-09-02 00:56:01 +00:00
|
|
|
|
1999-01-30 01:02:28 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::GetDefaultSelected(PRBool* aDefaultSelected)
|
|
|
|
{
|
|
|
|
nsHTMLValue val;
|
|
|
|
nsresult rv = mInner.GetHTMLAttribute(nsHTMLAtoms::selected, val);
|
|
|
|
*aDefaultSelected = (NS_CONTENT_ATTR_NOT_THERE != rv);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::SetDefaultSelected(PRBool aDefaultSelected)
|
|
|
|
{
|
|
|
|
nsHTMLValue empty(eHTMLUnit_Empty);
|
|
|
|
if (aDefaultSelected) {
|
|
|
|
return mInner.SetHTMLAttribute(nsHTMLAtoms::selected, empty, PR_TRUE);
|
|
|
|
} else {
|
|
|
|
mInner.UnsetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::selected, PR_TRUE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-08 23:47:49 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::GetIndex(PRInt32* aIndex)
|
|
|
|
{
|
|
|
|
nsresult res = NS_ERROR_FAILURE;
|
|
|
|
*aIndex = -1; // -1 indicates the index was not found
|
|
|
|
|
|
|
|
// Get our nsIDOMNode interface to compare apples to apples.
|
|
|
|
nsIDOMNode* thisNode = nsnull;
|
|
|
|
if (NS_OK == this->QueryInterface(kIDOMNodeIID, (void**)&thisNode)) {
|
|
|
|
|
|
|
|
// Get our containing select content object.
|
|
|
|
nsIDOMHTMLSelectElement* selectElement = nsnull;
|
|
|
|
if (NS_OK == GetSelect(selectElement)) {
|
|
|
|
|
|
|
|
// Get the options from the select object.
|
|
|
|
nsIDOMHTMLCollection* options = nsnull;
|
|
|
|
if (NS_OK == selectElement->GetOptions(&options)) {
|
|
|
|
|
|
|
|
// Walk the options to find out where we are in the list (ick, O(n))
|
|
|
|
PRUint32 length = 0;
|
|
|
|
options->GetLength(&length);
|
|
|
|
nsIDOMNode* thisOption = nsnull;
|
|
|
|
for (PRUint32 i = 0; i < length; i++) {
|
|
|
|
options->Item(i, &thisOption);
|
|
|
|
if (thisNode == thisOption) {
|
|
|
|
res = NS_OK;
|
|
|
|
*aIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(thisOption);
|
|
|
|
}
|
|
|
|
NS_RELEASE(options);
|
|
|
|
}
|
|
|
|
NS_RELEASE(selectElement);
|
|
|
|
}
|
|
|
|
NS_RELEASE(thisNode);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method does nothing for now as Index is supposed to be a read-only property
|
|
|
|
// (See the DOM Errata)
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::SetIndex(PRInt32 aIndex)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-09-02 00:56:01 +00:00
|
|
|
NS_IMETHODIMP
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::StringToAttribute(nsIAtom* aAttribute,
|
1998-09-02 00:56:01 +00:00
|
|
|
const nsString& aValue,
|
|
|
|
nsHTMLValue& aResult)
|
|
|
|
{
|
1998-09-23 17:16:51 +00:00
|
|
|
if (aAttribute == nsHTMLAtoms::selected) {
|
|
|
|
aResult.SetEmptyValue();
|
|
|
|
return NS_CONTENT_ATTR_HAS_VALUE;
|
|
|
|
}
|
|
|
|
else if (aAttribute == nsHTMLAtoms::disabled) {
|
|
|
|
aResult.SetEmptyValue();
|
|
|
|
return NS_CONTENT_ATTR_HAS_VALUE;
|
|
|
|
}
|
1998-09-02 00:56:01 +00:00
|
|
|
return NS_CONTENT_ATTR_NOT_THERE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::AttributeToString(nsIAtom* aAttribute,
|
1998-12-20 01:21:23 +00:00
|
|
|
const nsHTMLValue& aValue,
|
1998-09-02 00:56:01 +00:00
|
|
|
nsString& aResult) const
|
|
|
|
{
|
|
|
|
return mInner.AttributeToString(aAttribute, aValue, aResult);
|
|
|
|
}
|
|
|
|
|
1998-09-05 04:00:06 +00:00
|
|
|
static void
|
|
|
|
MapAttributesInto(nsIHTMLAttributes* aAttributes,
|
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIPresContext* aPresContext)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
1998-09-05 04:00:06 +00:00
|
|
|
nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aContext, aPresContext);
|
1998-09-02 00:56:01 +00:00
|
|
|
}
|
|
|
|
|
1998-09-05 04:00:06 +00:00
|
|
|
NS_IMETHODIMP
|
1999-04-15 21:23:05 +00:00
|
|
|
nsHTMLOptionElement::GetAttributeMappingFunctions(nsMapAttributesFunc& aFontMapFunc,
|
|
|
|
nsMapAttributesFunc& aMapFunc) const
|
1998-09-05 04:00:06 +00:00
|
|
|
{
|
1999-04-15 21:23:05 +00:00
|
|
|
aFontMapFunc = nsnull;
|
1998-09-05 04:00:06 +00:00
|
|
|
aMapFunc = &MapAttributesInto;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-09-02 00:56:01 +00:00
|
|
|
NS_IMETHODIMP
|
1998-09-02 23:53:16 +00:00
|
|
|
nsHTMLOptionElement::HandleDOMEvent(nsIPresContext& aPresContext,
|
1998-09-02 00:56:01 +00:00
|
|
|
nsEvent* aEvent,
|
|
|
|
nsIDOMEvent** aDOMEvent,
|
|
|
|
PRUint32 aFlags,
|
|
|
|
nsEventStatus& aEventStatus)
|
|
|
|
{
|
|
|
|
return mInner.HandleDOMEvent(aPresContext, aEvent, aDOMEvent,
|
|
|
|
aFlags, aEventStatus);
|
|
|
|
}
|
1998-09-23 17:16:51 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::GetText(nsString& aText)
|
|
|
|
{
|
|
|
|
aText.SetLength(0);
|
1999-03-31 05:59:06 +00:00
|
|
|
PRInt32 numNodes;
|
|
|
|
nsresult rv = mInner.ChildCount(numNodes);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
for (PRInt32 i = 0; i < numNodes; i++) {
|
|
|
|
nsIContent* node;
|
|
|
|
rv = ChildAt(i, node);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nsIDOMText* domText = nsnull;
|
|
|
|
rv = node->QueryInterface(kIDOMTextIID, (void**)&domText);
|
|
|
|
if (NS_SUCCEEDED(rv) && domText) {
|
|
|
|
rv = domText->GetData(aText);
|
|
|
|
aText.CompressWhitespace(PR_TRUE, PR_TRUE);
|
|
|
|
NS_RELEASE(domText);
|
|
|
|
NS_RELEASE(node);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_RELEASE(node);
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
1999-03-31 05:59:06 +00:00
|
|
|
return NS_OK;
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
1998-12-10 23:52:46 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOptionElement::GetStyleHintForAttributeChange(
|
|
|
|
const nsIAtom* aAttribute,
|
|
|
|
PRInt32 *aHint) const
|
|
|
|
{
|
1999-02-15 06:42:44 +00:00
|
|
|
nsGenericHTMLElement::GetStyleHintForCommonAttributes(this, aAttribute, aHint);
|
1998-12-10 23:52:46 +00:00
|
|
|
return NS_OK;
|
1998-12-20 01:21:23 +00:00
|
|
|
}
|
1999-01-30 01:02:28 +00:00
|
|
|
|
1999-03-02 03:26:29 +00:00
|
|
|
// Options don't have frames - get the select content node
|
|
|
|
// then call nsGenericHTMLElement::GetPrimaryFrame()
|
1999-01-30 01:02:28 +00:00
|
|
|
nsresult nsHTMLOptionElement::GetPrimaryFrame(nsIFormControlFrame *&aIFormControlFrame)
|
1999-04-08 23:47:49 +00:00
|
|
|
{
|
|
|
|
nsIDOMHTMLSelectElement* selectElement = nsnull;
|
|
|
|
nsresult res = GetSelect(selectElement);
|
|
|
|
if (NS_OK == res) {
|
|
|
|
nsIHTMLContent* selectContent = nsnull;
|
|
|
|
nsresult gotContent = selectElement->QueryInterface(kIContentIID, (void**)&selectContent);
|
|
|
|
NS_RELEASE(selectElement);
|
|
|
|
|
|
|
|
if (NS_OK == gotContent) {
|
|
|
|
res = nsGenericHTMLElement::GetPrimaryFrame(selectContent, aIFormControlFrame);
|
|
|
|
NS_RELEASE(selectContent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the select content element that contains this option
|
|
|
|
nsresult nsHTMLOptionElement::GetSelect(nsIDOMHTMLSelectElement *&aSelectElement)
|
1999-01-30 01:02:28 +00:00
|
|
|
{
|
1999-03-02 03:26:29 +00:00
|
|
|
// Get the containing element (Either a select or an optGroup)
|
1999-01-30 01:02:28 +00:00
|
|
|
nsIDOMNode* parentNode = nsnull;
|
1999-04-08 23:47:49 +00:00
|
|
|
nsresult res = NS_ERROR_FAILURE;
|
|
|
|
if (NS_OK == this->GetParentNode(&parentNode)) {
|
|
|
|
aSelectElement = nsnull;
|
|
|
|
res = parentNode->QueryInterface(kIDOMHTMLSelectElementIID, (void**)&aSelectElement);
|
1999-01-30 01:02:28 +00:00
|
|
|
|
1999-03-02 03:26:29 +00:00
|
|
|
// If we are in an OptGroup we need to GetParentNode again (at least once)
|
1999-04-08 23:47:49 +00:00
|
|
|
if (NS_OK != res) {
|
1999-03-02 03:26:29 +00:00
|
|
|
nsIDOMHTMLOptGroupElement* optgroupElement = nsnull;
|
|
|
|
while (1) { // Be ready for nested OptGroups
|
1999-04-08 23:47:49 +00:00
|
|
|
if (NS_OK == parentNode->QueryInterface(kIDOMHTMLOptGroupElementIID, (void**)&optgroupElement)) {
|
|
|
|
NS_RELEASE(optgroupElement); // Don't need the optgroup, just seeing if it IS one.
|
1999-03-02 03:26:29 +00:00
|
|
|
nsIDOMNode* grandParentNode = nsnull;
|
1999-04-08 23:47:49 +00:00
|
|
|
if (NS_OK == parentNode->GetParentNode(&grandParentNode)) {
|
1999-03-02 03:26:29 +00:00
|
|
|
NS_RELEASE(parentNode);
|
|
|
|
parentNode = grandParentNode;
|
|
|
|
} else {
|
|
|
|
break; // Break out if we can't get our parent (we're screwed)
|
1999-01-30 01:02:28 +00:00
|
|
|
}
|
1999-03-02 03:26:29 +00:00
|
|
|
} else {
|
|
|
|
break; // Break out if not a OptGroup (hopefully we have a select)
|
1999-01-30 01:02:28 +00:00
|
|
|
}
|
|
|
|
}
|
1999-04-08 23:47:49 +00:00
|
|
|
res = parentNode->QueryInterface(kIDOMHTMLSelectElementIID, (void**)&aSelectElement);
|
1999-03-02 03:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We have a select if we're gonna get one, so let go of the generic node
|
|
|
|
NS_RELEASE(parentNode);
|
1999-01-30 01:02:28 +00:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|