Add history feature; group some functionality into subpackages
[zxing.git] / android / src / com / google / zxing / client / android / result / ProductResultHandler.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.PreferencesActivity;
20 import com.google.zxing.client.android.R;
21 import com.google.zxing.client.result.ParsedResult;
22 import com.google.zxing.client.result.ProductParsedResult;
23
24 import android.app.Activity;
25 import android.content.SharedPreferences;
26 import android.preference.PreferenceManager;
27
28 /**
29  * Handles generic products which are not books.
30  *
31  * @author dswitkin@google.com (Daniel Switkin)
32  */
33 public final class ProductResultHandler extends ResultHandler {
34   private static final int[] buttons = {
35       R.string.button_product_search,
36       R.string.button_web_search,
37       R.string.button_custom_product_search,
38   };
39
40   private final String customProductSearch;
41
42   public ProductResultHandler(Activity activity, ParsedResult result) {
43     super(activity, result);
44     SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
45     customProductSearch = prefs.getString(PreferencesActivity.KEY_CUSTOM_PRODUCT_SEARCH, null);
46   }
47
48   @Override
49   public int getButtonCount() {
50     return customProductSearch != null ? buttons.length : buttons.length - 1;
51   }
52
53   @Override
54   public int getButtonText(int index) {
55     return buttons[index];
56   }
57
58   @Override
59   public void handleButtonPress(int index) {
60     ProductParsedResult productResult = (ProductParsedResult) getResult();
61     switch (index) {
62       case 0:
63         openProductSearch(productResult.getNormalizedProductID());
64         break;
65       case 1:
66         webSearch(productResult.getNormalizedProductID());
67         break;
68       case 2:
69         String url = customProductSearch.replace("%s", productResult.getNormalizedProductID());
70         openURL(url);
71         break;
72     }
73   }
74
75   @Override
76   public int getDisplayTitle() {
77     return R.string.result_product;
78   }
79 }