blob: 42c261377879d7ef9f6010df530bcf1a13b48677 [file] [log] [blame]
/*
* This class provides access to the device camera.
* @constructor
*/
function Camera() {
};
/*
* @param {Function} successCallback
* @param {Function} errorCallback
* @param {Object} options
*/
Camera.prototype.getPicture = function(successCallback, errorCallback, options) {
var filename = "";
if (typeof options != 'undefined' && typeof options.filename != 'undefined') {
filename = options.filename;
}
this.service = navigator.service.Request('palm://com.palm.applicationManager', {
method: 'launch',
parameters: {
id: 'com.palm.app.camera',
params: {
appId: 'com.palm.app.camera',
name: 'capture',
sublaunch: true,
filename: filename
}
},
onSuccess: successCallback,
onFailure: errorCallback
});
};
/*
* @param {Function} successCallback
* @param {Function} errorCallback
* @param {Object} options
*/
/*
Camera.prototype.getPicture = function(successCallback, errorCallback, options) {
params = { sublaunch: true };
if (typeof options != 'undefined' && typeof options.filename != 'undefined') {
params.filename = options.filename;
}
navigator.camera.errorCallback = errorCallback;
navigator.camera.successCallback = successCallback;
//TODO: This callback is not being called
//currently calling handlePicture from First-assistant.js activate method
var that = this;
this.callback = function (event) {
if (event !== undefined) {
debug.log(Object.toJSON(event));
//Mojo.Event.stopListening(PhoneGap.sceneController.sceneElement, Mojo.Event.activate, that.callback);
PhoneGap.sceneController.sceneElement.removeEventListener("activate", that.callback);
// TODO: not receiving the proper event object as per forum article
//successCallback(event.filename);
}
};
//Mojo.Event.listen(PhoneGap.sceneController.sceneElement, Mojo.Event.activate, this.callback);
PhoneGap.sceneController.sceneElement.addEventListener("activate", this.callback);
PhoneGap.sceneController.stageController.pushScene(
{
appId :'com.palm.app.camera',
name: 'capture'
}, params
);
};
*/
if (typeof navigator.camera == 'undefined') navigator.camera = new Camera();