2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (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/MPL/
|
|
|
|
*
|
|
|
|
* 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 the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "nsIDOMHTMLFieldSetElement.h"
|
|
|
|
#include "nsIDOMHTMLFormElement.h"
|
2007-05-14 02:11:38 -07:00
|
|
|
#include "nsIDOMEventTarget.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIForm.h"
|
|
|
|
#include "nsIFormControl.h"
|
2010-08-21 11:52:49 -07:00
|
|
|
#include "nsIConstraintValidation.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
class nsHTMLFieldSetElement : public nsGenericHTMLFormElement,
|
2010-08-18 11:28:08 -07:00
|
|
|
public nsIDOMHTMLFieldSetElement,
|
2010-08-21 11:52:49 -07:00
|
|
|
public nsIConstraintValidation
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-09-02 13:12:47 -07:00
|
|
|
using nsIConstraintValidation::GetValidationMessage;
|
|
|
|
|
2010-07-23 02:49:57 -07:00
|
|
|
nsHTMLFieldSetElement(already_AddRefed<nsINodeInfo> aNodeInfo);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsHTMLFieldSetElement();
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMNode
|
|
|
|
NS_FORWARD_NSIDOMNODE(nsGenericHTMLFormElement::)
|
|
|
|
|
|
|
|
// nsIDOMElement
|
|
|
|
NS_FORWARD_NSIDOMELEMENT(nsGenericHTMLFormElement::)
|
|
|
|
|
|
|
|
// nsIDOMHTMLElement
|
|
|
|
NS_FORWARD_NSIDOMHTMLELEMENT(nsGenericHTMLFormElement::)
|
|
|
|
|
|
|
|
// nsIDOMHTMLFieldSetElement
|
|
|
|
NS_DECL_NSIDOMHTMLFIELDSETELEMENT
|
|
|
|
|
|
|
|
// nsIFormControl
|
2010-05-19 19:30:04 -07:00
|
|
|
NS_IMETHOD_(PRUint32) GetType() const { return NS_FORM_FIELDSET; }
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD Reset();
|
2010-08-19 14:58:20 -07:00
|
|
|
NS_IMETHOD SubmitNamesValues(nsFormSubmission* aFormSubmission);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult Clone(nsINodeInfo *aNodeInfo, nsINode **aResult) const;
|
2010-07-23 02:49:57 -07:00
|
|
|
virtual nsXPCClassInfo* GetClassInfo();
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// construction, destruction
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT(FieldSet)
|
|
|
|
|
|
|
|
|
2010-07-23 02:49:57 -07:00
|
|
|
nsHTMLFieldSetElement::nsHTMLFieldSetElement(already_AddRefed<nsINodeInfo> aNodeInfo)
|
2007-03-22 10:30:00 -07:00
|
|
|
: nsGenericHTMLFormElement(aNodeInfo)
|
|
|
|
{
|
2010-09-09 22:08:56 -07:00
|
|
|
// <fieldset> is always barred from constraint validation.
|
|
|
|
SetBarredFromConstraintValidation(PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsHTMLFieldSetElement::~nsHTMLFieldSetElement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(nsHTMLFieldSetElement, nsGenericElement)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsHTMLFieldSetElement, nsGenericElement)
|
|
|
|
|
2010-07-23 02:49:57 -07:00
|
|
|
DOMCI_NODE_DATA(HTMLFieldSetElement, nsHTMLFieldSetElement)
|
2010-01-12 05:08:43 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// QueryInterface implementation for nsHTMLFieldSetElement
|
2008-11-03 02:31:47 -08:00
|
|
|
NS_INTERFACE_TABLE_HEAD(nsHTMLFieldSetElement)
|
2010-08-21 11:51:38 -07:00
|
|
|
NS_HTML_CONTENT_INTERFACE_TABLE2(nsHTMLFieldSetElement,
|
|
|
|
nsIDOMHTMLFieldSetElement,
|
2010-08-21 11:52:49 -07:00
|
|
|
nsIConstraintValidation)
|
2008-11-03 02:31:47 -08:00
|
|
|
NS_HTML_CONTENT_INTERFACE_TABLE_TO_MAP_SEGUE(nsHTMLFieldSetElement,
|
|
|
|
nsGenericHTMLFormElement)
|
2007-08-20 15:55:06 -07:00
|
|
|
NS_HTML_CONTENT_INTERFACE_TABLE_TAIL_CLASSINFO(HTMLFieldSetElement)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
// nsIDOMHTMLFieldSetElement
|
|
|
|
|
2010-08-21 11:52:49 -07:00
|
|
|
// nsIConstraintValidation
|
|
|
|
NS_IMPL_NSICONSTRAINTVALIDATION(nsHTMLFieldSetElement)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMPL_ELEMENT_CLONE(nsHTMLFieldSetElement)
|
|
|
|
|
|
|
|
|
|
|
|
// nsIDOMHTMLFieldSetElement
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLFieldSetElement::GetForm(nsIDOMHTMLFormElement** aForm)
|
|
|
|
{
|
|
|
|
return nsGenericHTMLFormElement::GetForm(aForm);
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsIFormControl
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLFieldSetElement::Reset()
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-08-19 14:58:20 -07:00
|
|
|
nsHTMLFieldSetElement::SubmitNamesValues(nsFormSubmission* aFormSubmission)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|