d304fa9be6115bf62b344fb4ea718c69b66b1e17
[zxing.git] / android / src / com / google / zxing / client / android / result / ISBNResultHandler.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.ISBNParsedResult;
22 import com.google.zxing.client.result.ParsedResult;
23
24 import android.app.Activity;
25 import android.content.SharedPreferences;
26 import android.preference.PreferenceManager;
27
28 /**
29  * Handles books encoded by their ISBN values.
30  *
31  * @author dswitkin@google.com (Daniel Switkin)
32  */
33 public final class ISBNResultHandler extends ResultHandler {
34   private static final int[] buttons = {
35       R.string.button_product_search,
36       R.string.button_book_search,
37       R.string.button_search_book_contents,
38       R.string.button_custom_product_search,
39   };
40
41   private final String customProductSearch;
42
43   public ISBNResultHandler(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 ? buttons.length : buttons
52         .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     ISBNParsedResult isbnResult = (ISBNParsedResult) result;
63     switch (index) {
64       case 0:
65         openProductSearch(isbnResult.getISBN());
66         break;
67       case 1:
68         openBookSearch(isbnResult.getISBN());
69         break;
70       case 2:
71         searchBookContents(isbnResult.getISBN());
72         break;
73       case 3:
74         String url = customProductSearch.replace("%s", isbnResult.getISBN());
75         openURL(url);
76         break;
77     }
78   }
79
80   @Override
81   public int getDisplayTitle() {
82     return R.string.result_isbn;
83   }
84 }