blob: c2e750e9a278824ded83c528358a0c9f9fa048fa [file] [log] [blame]
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +00001/*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 *
19 */
20
21#include "config.h"
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000022#include "HTMLProgressElement.h"
23
antti@apple.com71ed9352014-01-10 17:45:19 +000024#include "ElementIterator.h"
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000025#include "HTMLNames.h"
darin@apple.com2f2a9802010-09-13 23:42:02 +000026#include "HTMLParserIdioms.h"
morrita@google.combcbb2082011-04-06 17:03:26 +000027#include "ProgressShadowElement.h"
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000028#include "RenderProgress.h"
tkent@chromium.org553b1722011-04-08 06:03:31 +000029#include "ShadowRoot.h"
fpizlo@apple.com197cd322018-03-17 06:11:00 +000030#include <wtf/IsoMallocInlines.h>
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000031
32namespace WebCore {
33
fpizlo@apple.com197cd322018-03-17 06:11:00 +000034WTF_MAKE_ISO_ALLOCATED_IMPL(HTMLProgressElement);
35
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000036using namespace HTMLNames;
37
morrita@google.comcd7fb9d2011-04-18 17:14:03 +000038const double HTMLProgressElement::IndeterminatePosition = -1;
39const double HTMLProgressElement::InvalidPosition = -2;
40
weinig@apple.com49178832013-09-15 00:39:29 +000041HTMLProgressElement::HTMLProgressElement(const QualifiedName& tagName, Document& document)
commit-queue@webkit.orgd18af502012-03-16 15:01:16 +000042 : LabelableElement(tagName, document)
haraken@chromium.org3a27df52012-08-20 01:31:23 +000043 , m_value(0)
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000044{
45 ASSERT(hasTagName(progressTag));
antti@apple.com0f2ac5b2013-08-18 20:01:20 +000046 setHasCustomStyleResolveCallbacks();
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000047}
48
dbates@webkit.orgf21f3ae2017-10-19 23:48:45 +000049HTMLProgressElement::~HTMLProgressElement() = default;
morrita@google.combcbb2082011-04-06 17:03:26 +000050
weinig@apple.com02f433a2015-01-06 22:32:48 +000051Ref<HTMLProgressElement> HTMLProgressElement::create(const QualifiedName& tagName, Document& document)
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000052{
weinig@apple.com02f433a2015-01-06 22:32:48 +000053 Ref<HTMLProgressElement> progress = adoptRef(*new HTMLProgressElement(tagName, document));
esprehn@chromium.org933723d2013-01-29 07:47:20 +000054 progress->ensureUserAgentShadowRoot();
akling@apple.comdbdca2f2014-11-22 09:12:01 +000055 return progress;
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000056}
57
antti@apple.com454418f2016-04-25 19:49:23 +000058RenderPtr<RenderElement> HTMLProgressElement::createElementRenderer(RenderStyle&& style, const RenderTreePosition&)
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000059{
antti@apple.com454418f2016-04-25 19:49:23 +000060 if (!style.hasAppearance())
aestes@apple.com13aae082016-01-02 08:03:08 +000061 return RenderElement::createFor(*this, WTFMove(style));
shinyak@chromium.orgc44aafa2012-08-06 12:00:14 +000062
aestes@apple.com13aae082016-01-02 08:03:08 +000063 return createRenderer<RenderProgress>(*this, WTFMove(style));
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000064}
65
weinig@apple.comda898c32013-11-11 04:02:09 +000066bool HTMLProgressElement::childShouldCreateRenderer(const Node& child) const
morrita@google.combeaa6642012-02-24 09:59:07 +000067{
antti@apple.comdacd6de2013-08-20 22:52:55 +000068 return hasShadowRootParent(child) && HTMLElement::childShouldCreateRenderer(child);
morrita@google.combeaa6642012-02-24 09:59:07 +000069}
70
shinyak@chromium.orgc44aafa2012-08-06 12:00:14 +000071RenderProgress* HTMLProgressElement::renderProgress() const
72{
cdumez@apple.com3abcc792014-10-20 03:42:03 +000073 if (is<RenderProgress>(renderer()))
74 return downcast<RenderProgress>(renderer());
75 return downcast<RenderProgress>(descendantsOfType<Element>(*userAgentShadowRoot()).first()->renderer());
shinyak@chromium.orgc44aafa2012-08-06 12:00:14 +000076}
77
akling@apple.com43e9d042012-11-18 16:55:06 +000078void HTMLProgressElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000079{
akling@apple.com43e9d042012-11-18 16:55:06 +000080 if (name == valueAttr)
morrita@google.com3e2d4002011-02-01 04:05:52 +000081 didElementStateChange();
akling@apple.com43e9d042012-11-18 16:55:06 +000082 else if (name == maxAttr)
morrita@google.com3e2d4002011-02-01 04:05:52 +000083 didElementStateChange();
84 else
akling@apple.com43e9d042012-11-18 16:55:06 +000085 LabelableElement::parseAttribute(name, value);
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000086}
87
antti@apple.com0f2ac5b2013-08-18 20:01:20 +000088void HTMLProgressElement::didAttachRenderers()
morrita@google.comb172c47a2010-12-08 04:21:20 +000089{
tasak@google.com5f12a092012-11-01 04:34:52 +000090 if (RenderProgress* render = renderProgress())
91 render->updateFromElement();
morrita@google.comb172c47a2010-12-08 04:21:20 +000092}
93
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000094double HTMLProgressElement::value() const
95{
rniwa@webkit.orge999a052016-07-16 15:21:55 +000096 double value = parseToDoubleForNumberType(attributeWithoutSynchronization(valueAttr));
zandobersek@gmail.com8c24b7a2013-02-18 17:13:23 +000097 return !std::isfinite(value) || value < 0 ? 0 : std::min(value, max());
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +000098}
99
darin@apple.com66d41182016-10-29 02:32:20 +0000100void HTMLProgressElement::setValue(double value)
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000101{
darin@apple.com1d17a8f2017-10-08 22:17:46 +0000102 setAttributeWithoutSynchronization(valueAttr, AtomicString::number(value));
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000103}
104
105double HTMLProgressElement::max() const
106{
rniwa@webkit.orge999a052016-07-16 15:21:55 +0000107 double max = parseToDoubleForNumberType(attributeWithoutSynchronization(maxAttr));
zandobersek@gmail.com8c24b7a2013-02-18 17:13:23 +0000108 return !std::isfinite(max) || max <= 0 ? 1 : max;
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000109}
110
darin@apple.com66d41182016-10-29 02:32:20 +0000111void HTMLProgressElement::setMax(double max)
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000112{
darin@apple.com1d17a8f2017-10-08 22:17:46 +0000113 if (max > 0)
114 setAttributeWithoutSynchronization(maxAttr, AtomicString::number(max));
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000115}
116
117double HTMLProgressElement::position() const
118{
dominicc@chromium.orgcc5eb842011-07-05 04:21:24 +0000119 if (!isDeterminate())
morrita@google.comcd7fb9d2011-04-18 17:14:03 +0000120 return HTMLProgressElement::IndeterminatePosition;
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000121 return value() / max();
122}
123
dominicc@chromium.orgcc5eb842011-07-05 04:21:24 +0000124bool HTMLProgressElement::isDeterminate() const
yael.aharon@nokia.com4cdb6b82011-06-14 13:22:18 +0000125{
rniwa@webkit.orgbda54a02016-07-18 00:39:37 +0000126 return hasAttributeWithoutSynchronization(valueAttr);
yael.aharon@nokia.com4cdb6b82011-06-14 13:22:18 +0000127}
128
morrita@google.com3e2d4002011-02-01 04:05:52 +0000129void HTMLProgressElement::didElementStateChange()
130{
dominicc@chromium.orgcc5eb842011-07-05 04:21:24 +0000131 m_value->setWidthPercentage(position() * 100);
shinyak@chromium.orgc44aafa2012-08-06 12:00:14 +0000132 if (RenderProgress* render = renderProgress()) {
yael.aharon@nokia.com4cdb6b82011-06-14 13:22:18 +0000133 bool wasDeterminate = render->isDeterminate();
shinyak@chromium.orgc44aafa2012-08-06 12:00:14 +0000134 render->updateFromElement();
morrita@google.com1531baa2013-01-08 17:29:32 +0000135 if (wasDeterminate != isDeterminate())
antti@apple.com1c455832016-10-18 12:28:55 +0000136 invalidateStyleForSubtree();
yael.aharon@nokia.com4cdb6b82011-06-14 13:22:18 +0000137 }
morrita@google.com3e2d4002011-02-01 04:05:52 +0000138}
139
dbates@webkit.org62df2762017-11-02 04:13:18 +0000140void HTMLProgressElement::didAddUserAgentShadowRoot(ShadowRoot& root)
morrita@google.com3e2d4002011-02-01 04:05:52 +0000141{
haraken@chromium.org3a27df52012-08-20 01:31:23 +0000142 ASSERT(!m_value);
shinyak@chromium.orgc44aafa2012-08-06 12:00:14 +0000143
cdumez@apple.comf45d2b52016-05-11 19:02:09 +0000144 auto inner = ProgressInnerElement::create(document());
dbates@webkit.org62df2762017-11-02 04:13:18 +0000145 root.appendChild(inner);
morrita@google.com6b18c3f2012-02-09 05:46:57 +0000146
cdumez@apple.comf45d2b52016-05-11 19:02:09 +0000147 auto bar = ProgressBarElement::create(document());
148 auto value = ProgressValueElement::create(document());
cdumez@apple.comc2ad8482015-09-10 18:02:15 +0000149 m_value = value.ptr();
tasak@google.com5f12a092012-11-01 04:34:52 +0000150 m_value->setWidthPercentage(HTMLProgressElement::IndeterminatePosition * 100);
darin@apple.com4a588ff2016-11-11 20:16:03 +0000151 bar->appendChild(value);
morrita@google.com6b18c3f2012-02-09 05:46:57 +0000152
darin@apple.com4a588ff2016-11-11 20:16:03 +0000153 inner->appendChild(bar);
morrita@google.com3e2d4002011-02-01 04:05:52 +0000154}
155
tkent@chromium.org7548f3e2013-03-26 08:26:04 +0000156bool HTMLProgressElement::shouldAppearIndeterminate() const
157{
158 return !isDeterminate();
159}
160
yael.aharon@nokia.com93e750a2010-03-15 01:00:36 +0000161} // namespace