2014-04-09 19:52:10 +04:00
|
|
|
/* 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 DOM_CAMERA_DOMCAMERADETECTEDFACE_H
|
|
|
|
#define DOM_CAMERA_DOMCAMERADETECTEDFACE_H
|
|
|
|
|
|
|
|
#include "mozilla/dom/CameraControlBinding.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "mozilla/dom/DOMRect.h"
|
2014-05-01 23:09:00 +04:00
|
|
|
#include "mozilla/dom/DOMPoint.h"
|
2014-04-09 19:52:10 +04:00
|
|
|
#include "ICameraControl.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class DOMCameraDetectedFace final : public nsISupports
|
2015-03-27 21:52:19 +03:00
|
|
|
, public nsWrapperCache
|
2014-04-09 19:52:10 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMCameraDetectedFace)
|
|
|
|
|
2014-04-09 19:53:34 +04:00
|
|
|
// Because this header's filename doesn't match its C++ or DOM-facing
|
|
|
|
// classname, we can't rely on the [Func="..."] WebIDL tag to implicitly
|
|
|
|
// include the right header for us; instead we must explicitly include a
|
|
|
|
// HasSupport() method in each header. We can get rid of these with the
|
|
|
|
// Great Renaming proposed in bug 983177.
|
|
|
|
static bool HasSupport(JSContext* aCx, JSObject* aGlobal);
|
|
|
|
|
2015-03-01 21:48:37 +03:00
|
|
|
static already_AddRefed<DOMCameraDetectedFace> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const dom::CameraDetectedFaceInit& aFace,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-04-09 19:52:10 +04:00
|
|
|
DOMCameraDetectedFace(nsISupports* aParent, const ICameraControl::Face& aFace);
|
|
|
|
|
|
|
|
uint32_t Id() { return mId; }
|
|
|
|
uint32_t Score() { return mScore; }
|
|
|
|
bool HasLeftEye() { return mLeftEye; }
|
|
|
|
bool HasRightEye() { return mRightEye; }
|
|
|
|
bool HasMouth() { return mMouth; }
|
|
|
|
|
|
|
|
dom::DOMRect* Bounds() { return mBounds; }
|
|
|
|
|
2014-05-01 23:09:00 +04:00
|
|
|
dom::DOMPoint* GetLeftEye() { return mLeftEye; }
|
|
|
|
dom::DOMPoint* GetRightEye() { return mRightEye; }
|
|
|
|
dom::DOMPoint* GetMouth() { return mMouth; }
|
2014-04-09 19:52:10 +04:00
|
|
|
|
|
|
|
nsISupports*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mParent);
|
|
|
|
return mParent;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-04-09 19:52:10 +04:00
|
|
|
|
|
|
|
protected:
|
2015-03-01 21:48:37 +03:00
|
|
|
DOMCameraDetectedFace(nsISupports* aParent, const dom::CameraDetectedFaceInit& aFace);
|
2014-04-09 19:52:10 +04:00
|
|
|
virtual ~DOMCameraDetectedFace() { }
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
|
|
|
|
uint32_t mId;
|
|
|
|
uint32_t mScore;
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<dom::DOMRect> mBounds;
|
2014-04-09 19:52:10 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<dom::DOMPoint> mLeftEye;
|
|
|
|
RefPtr<dom::DOMPoint> mRightEye;
|
|
|
|
RefPtr<dom::DOMPoint> mMouth;
|
2014-04-09 19:52:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // DOM_CAMERA_DOMCAMERADETECTEDFACE_H
|