Issues 155.2 -- add %f for format
[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
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_google_shopper
39   };
40
41   public ISBNResultHandler(Activity activity, ParsedResult result, Result rawResult) {
42     super(activity, result, rawResult);
43   }
44
45   @Override
46   public int getButtonCount() {
47     // Always show four buttons - Shopper and Custom Search are mutually exclusive.
48     return buttons.length;
49   }
50
51   @Override
52   public int getButtonText(int index) {
53     if (index == buttons.length - 1 && hasCustomProductSearch()) {
54       return R.string.button_custom_product_search;
55     }
56     return buttons[index];
57   }
58
59   @Override
60   public void handleButtonPress(final int index) {
61     showNotOurResults(index, new AlertDialog.OnClickListener() {
62       public void onClick(DialogInterface dialogInterface, int i) {
63         ISBNParsedResult isbnResult = (ISBNParsedResult) getResult();
64         switch (index) {
65           case 0:
66             openProductSearch(isbnResult.getISBN());
67             break;
68           case 1:
69             openBookSearch(isbnResult.getISBN());
70             break;
71           case 2:
72             searchBookContents(isbnResult.getISBN());
73             break;
74           case 3:
75             if (hasCustomProductSearch()) {
76               openURL(fillInCustomSearchURL(isbnResult.getISBN()));
77             } else {
78               openGoogleShopper(isbnResult.getISBN());
79             }
80             break;
81         }
82       }
83     });
84   }
85
86   @Override
87   public int getDisplayTitle() {
88     return R.string.result_isbn;
89   }
90 }