2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-10-17 23:07:19 +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 mozilla_dom_gamepad_GamepadButton_h
|
|
|
|
#define mozilla_dom_gamepad_GamepadButton_h
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class GamepadButton : public nsISupports,
|
|
|
|
public nsWrapperCache
|
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit GamepadButton(nsISupports* aParent) : mParent(aParent),
|
2017-04-06 13:36:46 +03:00
|
|
|
mValue(0),
|
2014-09-02 04:49:25 +04:00
|
|
|
mPressed(false),
|
2017-04-06 13:36:46 +03:00
|
|
|
mTouched(false)
|
2013-10-17 23:07:19 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(GamepadButton)
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() const
|
|
|
|
{
|
|
|
|
return mParent;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-10-17 23:07:19 +04:00
|
|
|
|
|
|
|
void SetPressed(bool aPressed)
|
|
|
|
{
|
|
|
|
mPressed = aPressed;
|
|
|
|
}
|
|
|
|
|
2017-04-06 13:36:46 +03:00
|
|
|
void SetTouched(bool aTouched)
|
|
|
|
{
|
|
|
|
mTouched = aTouched;
|
|
|
|
}
|
|
|
|
|
2013-10-17 23:07:19 +04:00
|
|
|
void SetValue(double aValue)
|
|
|
|
{
|
|
|
|
mValue = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Pressed() const
|
|
|
|
{
|
|
|
|
return mPressed;
|
|
|
|
}
|
|
|
|
|
2017-04-06 13:36:46 +03:00
|
|
|
bool Touched() const
|
|
|
|
{
|
|
|
|
return mTouched;
|
|
|
|
}
|
|
|
|
|
2013-10-17 23:07:19 +04:00
|
|
|
double Value() const
|
|
|
|
{
|
|
|
|
return mValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~GamepadButton() {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
double mValue;
|
2017-04-06 13:36:46 +03:00
|
|
|
bool mPressed;
|
|
|
|
bool mTouched;
|
2013-10-17 23:07:19 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_gamepad_GamepadButton_h
|