Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * Copyright 2010 Daniel Kurka
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package com.googlecode.gwtphonegap.client.camera;

public class CameraMobileImpl implements Camera {

  @Override
  public void getPicture(PictureOptions options, PictureCallback callback) {
    if (options == null) {
      throw new IllegalArgumentException("options can not be null");
    }

    if (callback == null) {
      throw new IllegalArgumentException("callback can not be null");
    }
    getPicture0(options, callback);
  }

  private native void getPicture0(PictureOptions options, PictureCallback callback)/*-{
		var successCallback = function(data) {
			callback.@com.googlecode.gwtphonegap.client.camera.PictureCallback::onSuccess(Ljava/lang/String;)(data);
		};

		var errorCallback = function(message) {
			callback.@com.googlecode.gwtphonegap.client.camera.PictureCallback::onFailure(Ljava/lang/String;)(message);
		};

		var qual = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getQuality()();
		var dt = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getDestinationType()();
		var st = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getSourceType()();

		//private int encoding;

		//private int mediaType;

		var encoding = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getEncoding()();
		var g_allowEdit = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::isAllowEdit()();
		var mediaType = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getMediaType()();

		var g_photo_al = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::isSaveToPhotoAlbum()();
		var g_correct_o = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::isCorrectorientation()();

		var localOptions = {
			quality : qual,
			destinationType : dt,
			sourceType : st,
			allowEdit : g_allowEdit,
			encodingType : encoding,
			saveToPhotoAlbum : g_photo_al,
			correctOrientation : g_correct_o
		};

		var jpop = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getPopOverOptions()();

		if (jpop != null) {
			var popOver = {};

			popOver["x"] = jpop.@com.googlecode.gwtphonegap.client.camera.PopOverOptions::getX()();
			popOver["y"] = jpop.@com.googlecode.gwtphonegap.client.camera.PopOverOptions::getY()();
			popOver["width"] = jpop.@com.googlecode.gwtphonegap.client.camera.PopOverOptions::getWidth()();
			popOver["height"] = jpop.@com.googlecode.gwtphonegap.client.camera.PopOverOptions::getHeight()();
			popOver["arrowDir"] = jpop.@com.googlecode.gwtphonegap.client.camera.PopOverOptions::getArrowDir()();

			localOptions["popoverOptions"] = popOver;

		}

		var th = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getTargetHeightInPx()();
		if (th != -1) {
			localOptions["targetHeight"] = th;
		}

		var tw = options.@com.googlecode.gwtphonegap.client.camera.PictureOptions::getTargetWidthInPx()();
		if (tw != -1) {
			localOptions["targetWidth"] = tw;
		}

		$wnd.navigator.camera.getPicture($entry(successCallback),
				$entry(errorCallback), localOptions);
  }-*/;

  @Override
  public native void cleanUp(CameraCallback callback) /*-{

		var win = function() {
			callback.@com.googlecode.gwtphonegap.client.camera.CameraCallback::onSuccess()();
		};

		var fail = function(message) {
			callback.@com.googlecode.gwtphonegap.client.camera.CameraCallback::onError(Ljava/lang/String;)(message);
		};

		$wnd.navigator.camera.cleanup($entry(win), $entry(fail));

  }-*/;

}

Commits for litesoft/trunk/mobileGWT/gwt-phonegap/src/main/java/com/googlecode/gwtphonegap/client/camera/CameraMobileImpl.java

Diff revisions: vs.
Revision Author Commited Message
906 Diff Diff GeorgeS picture GeorgeS Fri 07 Jun, 2013 22:50:38 +0000

Update to latest gwt-phonegap & MGWT.

709 Diff Diff GeorgeS picture GeorgeS Sun 03 Jun, 2012 21:13:34 +0000
680 GeorgeS picture GeorgeS Sun 20 May, 2012 23:20:51 +0000