Small style stuff
[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.Result;
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.app.AlertDialog;
26 import android.content.DialogInterface;
27 import android.view.View;
28
29 /**
30  * Handles generic products which are not books.
31  *
32  * @author dswitkin@google.com (Daniel Switkin)
33  */
34 public final class ProductResultHandler extends ResultHandler {
35   private static final int[] buttons = {
36       R.string.button_product_search,
37       R.string.button_web_search,
38       R.string.button_custom_product_search
39   };
40
41   public ProductResultHandler(Activity activity, ParsedResult result, Result rawResult) {
42     super(activity, result, rawResult);
43     showGoogleShopperButton(new View.OnClickListener() {
44       public void onClick(View view) {
45         ProductParsedResult productResult = (ProductParsedResult) getResult();
46         openGoogleShopper(productResult.getNormalizedProductID());
47       }
48     });
49   }
50
51   @Override
52   public int getButtonCount() {
53     return hasCustomProductSearch() ? buttons.length : buttons.length - 1;
54   }
55
56   @Override
57   public int getButtonText(int index) {
58     return buttons[index];
59   }
60
61   @Override
62   public void handleButtonPress(final int index) {
63     showNotOurResults(index, new AlertDialog.OnClickListener() {
64       public void onClick(DialogInterface dialogInterface, int i) {
65         ProductParsedResult productResult = (ProductParsedResult) getResult();
66         switch (index) {
67           case 0:
68             openProductSearch(productResult.getNormalizedProductID());
69             break;
70           case 1:
71             webSearch(productResult.getNormalizedProductID());
72             break;
73           case 2:
74             openURL(fillInCustomSearchURL(productResult.getNormalizedProductID()));
75             break;
76         }
77       }
78     });
79   }
80
81   @Override
82   public int getDisplayTitle() {
83     return R.string.result_product;
84   }
85 }