Quellcode-Bibliothek HTMLFieldSetElement.h
Sprache: C
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
namespace mozilla { class ErrorResult; class EventChainPreVisitor; namespace dom { class FormData;
class HTMLFieldSetElement final : public nsGenericHTMLFormControlElement, public ConstraintValidation { public: using ConstraintValidation::GetValidationMessage; using ConstraintValidation::SetCustomValidity;
/* * This method will update the fieldset's validity. This method has to be * called by fieldset elements whenever their validity state or status * regarding constraint validation changes. * * @note If an element becomes barred from constraint validation, it has to * be considered as valid. * * @param aElementValidityState the new validity state of the element
*/ void UpdateValidity(bool aElementValidityState);
private: /** * Notify all elements (in mElements) that the first legend of the fieldset * has now changed.
*/ void NotifyElementsForFirstLegendChange(bool aNotify);
// This function is used to generate the nsContentList (listed form elements). staticbool MatchListedElements(Element* aElement, int32_t aNamespaceID,
nsAtom* aAtom, void* aData);
// listed form controls elements.
RefPtr<nsContentList> mElements;
// List of elements which have this fieldset as first fieldset ancestor.
nsTArray<nsGenericHTMLFormElement*> mDependentElements;
nsIContent* mFirstLegend;
/** * Number of invalid and candidate for constraint validation * elements in the fieldSet the last time UpdateValidity has been called. * * @note Should only be used by UpdateValidity()
*/
int32_t mInvalidElementsCount;
};
} // namespace dom
} // namespace mozilla
#endif/* mozilla_dom_HTMLFieldSetElement_h */
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.17Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.