CameraPopoverOptions.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. cordova.define("cordova-plugin-camera.CameraPopoverOptions", function(require, exports, module) { /*
  2. *
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. *
  20. */
  21. var Camera = require('./Camera');
  22. /**
  23. * @namespace navigator
  24. */
  25. /**
  26. * iOS-only parameters that specify the anchor element location and arrow
  27. * direction of the popover when selecting images from an iPad's library
  28. * or album.
  29. * Note that the size of the popover may change to adjust to the
  30. * direction of the arrow and orientation of the screen. Make sure to
  31. * account for orientation changes when specifying the anchor element
  32. * location.
  33. * @module CameraPopoverOptions
  34. * @param {Number} [x=0] - x pixel coordinate of screen element onto which to anchor the popover.
  35. * @param {Number} [y=32] - y pixel coordinate of screen element onto which to anchor the popover.
  36. * @param {Number} [width=320] - width, in pixels, of the screen element onto which to anchor the popover.
  37. * @param {Number} [height=480] - height, in pixels, of the screen element onto which to anchor the popover.
  38. * @param {module:Camera.PopoverArrowDirection} [arrowDir=ARROW_ANY] - Direction the arrow on the popover should point.
  39. * @param {Number} [popoverWidth=0] - width of the popover (0 or not specified will use apple's default width).
  40. * @param {Number} [popoverHeight=0] - height of the popover (0 or not specified will use apple's default height).
  41. */
  42. var CameraPopoverOptions = function (x, y, width, height, arrowDir, popoverWidth, popoverHeight) {
  43. // information of rectangle that popover should be anchored to
  44. this.x = x || 0;
  45. this.y = y || 32;
  46. this.width = width || 320;
  47. this.height = height || 480;
  48. this.arrowDir = arrowDir || Camera.PopoverArrowDirection.ARROW_ANY;
  49. this.popoverWidth = popoverWidth || 0;
  50. this.popoverHeight = popoverHeight || 0;
  51. };
  52. module.exports = CameraPopoverOptions;
  53. });