Added Android code
[wl-app.git] / Android / webViewMarker / src / main / java / com / bossturban / webviewmarker / TextSelectionController.java
1 /*
2  * Copyright (C) 2012 - 2014 Brandon Tate, bossturbo
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.bossturban.webviewmarker;
18
19 import android.webkit.JavascriptInterface;
20
21 public class TextSelectionController {
22     public static final String TAG = "TextSelectionController";
23     public static final String INTERFACE_NAME = "TextSelection";
24
25     private TextSelectionControlListener mListener;
26
27     public TextSelectionController(TextSelectionControlListener listener) {
28         mListener = listener;
29     }
30
31     @JavascriptInterface
32     public void jsError(String error) {
33         if (mListener != null) {
34             mListener.jsError(error);
35         }
36     }
37     @JavascriptInterface
38     public void jsLog(String message) {
39         if (mListener != null) {
40             mListener.jsLog(message);
41         }
42     }
43     @JavascriptInterface
44     public void startSelectionMode() {
45         if (mListener != null) {
46             mListener.startSelectionMode();
47         }
48     }
49     @JavascriptInterface
50     public void endSelectionMode() {
51         if (mListener != null) {
52             mListener.endSelectionMode();
53         }
54     }
55     @JavascriptInterface
56     public void selectionChanged(String range, String text, String handleBounds, boolean isReallyChanged) {
57         if (mListener != null) {
58             mListener.selectionChanged(range, text, handleBounds, isReallyChanged);
59         }
60     }
61     @JavascriptInterface
62     public void setContentWidth(float contentWidth) {
63         if (mListener != null) {
64             mListener.setContentWidth(contentWidth);
65         }
66     }
67 }