2013-02-11 22:56:31 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_HTMLProgressElement_h
|
|
|
|
#define mozilla_dom_HTMLProgressElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-02-11 22:56:31 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsAttrValue.h"
|
|
|
|
#include "nsAttrValueInlines.h"
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-08-08 00:23:08 +04:00
|
|
|
class HTMLProgressElement MOZ_FINAL : public nsGenericHTMLElement
|
2013-02-11 22:56:31 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLProgressElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-02-11 22:56:31 +04:00
|
|
|
|
2014-04-03 08:18:36 +04:00
|
|
|
EventStates IntrinsicState() const MOZ_OVERRIDE;
|
2013-02-11 22:56:31 +04:00
|
|
|
|
2014-06-20 06:01:40 +04:00
|
|
|
nsresult Clone(mozilla::dom::NodeInfo* aNodeInfo, nsINode** aResult) const MOZ_OVERRIDE;
|
2013-02-11 22:56:31 +04:00
|
|
|
|
|
|
|
bool ParseAttribute(int32_t aNamespaceID, nsIAtom* aAttribute,
|
2013-05-30 00:43:41 +04:00
|
|
|
const nsAString& aValue, nsAttrValue& aResult) MOZ_OVERRIDE;
|
2013-02-11 22:56:31 +04:00
|
|
|
|
2013-02-11 22:56:31 +04:00
|
|
|
// WebIDL
|
2013-02-11 22:56:31 +04:00
|
|
|
double Value() const;
|
2013-02-11 22:56:31 +04:00
|
|
|
void SetValue(double aValue, ErrorResult& aRv)
|
|
|
|
{
|
2013-08-22 10:34:39 +04:00
|
|
|
SetDoubleAttr(nsGkAtoms::value, aValue, aRv);
|
2013-02-11 22:56:31 +04:00
|
|
|
}
|
2013-02-11 22:56:31 +04:00
|
|
|
double Max() const;
|
2013-02-11 22:56:31 +04:00
|
|
|
void SetMax(double aValue, ErrorResult& aRv)
|
|
|
|
{
|
2013-08-22 10:34:39 +04:00
|
|
|
SetDoubleAttr(nsGkAtoms::max, aValue, aRv);
|
2013-02-11 22:56:31 +04:00
|
|
|
}
|
2013-02-11 22:56:31 +04:00
|
|
|
double Position() const;
|
2013-02-11 22:56:31 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLProgressElement();
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) MOZ_OVERRIDE;
|
2013-02-11 22:56:31 +04:00
|
|
|
|
2013-02-11 22:56:31 +04:00
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Returns whethem the progress element is in the indeterminate state.
|
|
|
|
* A progress element is in the indeterminate state if its value is ommited
|
|
|
|
* or is not a floating point number..
|
|
|
|
*
|
|
|
|
* @return whether the progress element is in the indeterminate state.
|
|
|
|
*/
|
|
|
|
bool IsIndeterminate() const;
|
|
|
|
|
|
|
|
static const double kIndeterminatePosition;
|
|
|
|
static const double kDefaultValue;
|
|
|
|
static const double kDefaultMax;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLProgressElement_h
|