Add history feature; group some functionality into subpackages
[zxing.git] / android / src / com / google / zxing / client / android / result / TextResultHandler.java
1 /*
2  * Copyright (C) 2008 ZXing authors
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.google.zxing.client.android.result;
18
19 import com.google.zxing.client.android.R;
20 import com.google.zxing.client.android.PreferencesActivity;
21 import com.google.zxing.client.result.ParsedResult;
22
23 import android.app.Activity;
24 import android.content.SharedPreferences;
25 import android.preference.PreferenceManager;
26
27 /**
28  * This class handles TextParsedResult as well as unknown formats. It's the fallback handler.
29  *
30  * @author dswitkin@google.com (Daniel Switkin)
31  */
32 public final class TextResultHandler extends ResultHandler {
33
34   private static final int[] buttons = {
35       R.string.button_web_search,
36       R.string.button_share_by_email,
37       R.string.button_share_by_sms,
38       R.string.button_custom_product_search,
39   };
40
41   private final String customProductSearch;
42
43   public TextResultHandler(Activity activity, ParsedResult result) {
44     super(activity, result);
45     SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
46     customProductSearch = prefs.getString(PreferencesActivity.KEY_CUSTOM_PRODUCT_SEARCH, null);
47   }
48
49   @Override
50   public int getButtonCount() {
51     return customProductSearch != null && customProductSearch.length() > 0 ?
52             buttons.length : buttons.length - 1;
53   }
54
55   @Override
56   public int getButtonText(int index) {
57     return buttons[index];
58   }
59
60   @Override
61   public void handleButtonPress(int index) {
62     String text = getResult().getDisplayResult();
63     switch (index) {
64       case 0:
65         webSearch(text);
66         break;
67       case 1:
68         shareByEmail(text);
69         break;
70       case 2:
71         shareBySMS(text);
72         break;
73       case 3:
74         String url = customProductSearch.replace("%s", text);
75         openURL(url);
76         break;
77     }
78   }
79
80   @Override
81   public int getDisplayTitle() {
82     return R.string.result_text;
83   }
84 }