initial import
[vuplus_webkit] / Source / WebCore / bindings / js / JSDeviceOrientationEventCustom.cpp
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *  * Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  *  * Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27
28 #if ENABLE(DEVICE_ORIENTATION)
29
30 #include "JSDeviceOrientationEvent.h"
31
32 #include "DeviceOrientation.h"
33 #include "DeviceOrientationEvent.h"
34
35 using namespace JSC;
36
37 namespace WebCore {
38
39 JSValue JSDeviceOrientationEvent::alpha(ExecState*) const
40 {
41     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
42     if (!imp->orientation()->canProvideAlpha())
43         return jsNull();
44     return jsNumber(imp->orientation()->alpha());
45 }
46
47 JSValue JSDeviceOrientationEvent::beta(ExecState*) const
48 {
49     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
50     if (!imp->orientation()->canProvideBeta())
51         return jsNull();
52     return jsNumber(imp->orientation()->beta());
53 }
54
55 JSValue JSDeviceOrientationEvent::gamma(ExecState*) const
56 {
57     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
58     if (!imp->orientation()->canProvideGamma())
59         return jsNull();
60     return jsNumber(imp->orientation()->gamma());
61 }
62
63 JSValue JSDeviceOrientationEvent::initDeviceOrientationEvent(ExecState* exec)
64 {
65     const String& type = ustringToString(exec->argument(0).toString(exec));
66     bool bubbles = exec->argument(1).toBoolean(exec);
67     bool cancelable = exec->argument(2).toBoolean(exec);
68     // If alpha, beta or gamma are null or undefined, mark them as not provided.
69     // Otherwise, use the standard JavaScript conversion.
70     bool alphaProvided = !exec->argument(3).isUndefinedOrNull();
71     double alpha = exec->argument(3).toNumber(exec);
72     bool betaProvided = !exec->argument(4).isUndefinedOrNull();
73     double beta = exec->argument(4).toNumber(exec);
74     bool gammaProvided = !exec->argument(5).isUndefinedOrNull();
75     double gamma = exec->argument(5).toNumber(exec);
76     RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma);
77     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
78     imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
79     return jsUndefined();
80 }
81
82 } // namespace WebCore
83
84 #endif // ENABLE(DEVICE_ORIENTATION)