Added a Google Shopper icon to the result buton for products and ISBNs.
[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.Result;
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.app.AlertDialog;
26 import android.content.DialogInterface;
27 import android.view.View;
28
29 /**
30  * Handles books encoded by their ISBN values.
31  *
32  * @author dswitkin@google.com (Daniel Switkin)
33  */
34 public final class ISBNResultHandler extends ResultHandler {
35   private static final int[] buttons = {
36       R.string.button_product_search,
37       R.string.button_book_search,
38       R.string.button_search_book_contents,
39       R.string.button_custom_product_search
40   };
41
42   public ISBNResultHandler(Activity activity, ParsedResult result, Result rawResult) {
43     super(activity, result, rawResult);
44     showGoogleShopperButton(new View.OnClickListener() {
45       public void onClick(View view) {
46         ISBNParsedResult isbnResult = (ISBNParsedResult) getResult();
47         openGoogleShopper(isbnResult.getISBN());
48       }
49     });
50   }
51
52   @Override
53   public int getButtonCount() {
54     return hasCustomProductSearch() ? buttons.length : buttons.length - 1;
55   }
56
57   @Override
58   public int getButtonText(int index) {
59     return buttons[index];
60   }
61
62   @Override
63   public void handleButtonPress(final int index) {
64     showNotOurResults(index, new AlertDialog.OnClickListener() {
65       public void onClick(DialogInterface dialogInterface, int i) {
66         ISBNParsedResult isbnResult = (ISBNParsedResult) getResult();
67         switch (index) {
68           case 0:
69             openProductSearch(isbnResult.getISBN());
70             break;
71           case 1:
72             openBookSearch(isbnResult.getISBN());
73             break;
74           case 2:
75             searchBookContents(isbnResult.getISBN());
76             break;
77           case 3:
78             openURL(fillInCustomSearchURL(isbnResult.getISBN()));
79             break;
80         }
81       }
82     });
83   }
84
85   @Override
86   public int getDisplayTitle() {
87     return R.string.result_isbn;
88   }
89 }