Issue 432 fix UMT definition
[zxing.git] / zxing.appspot.com / generator / src / com / google / zxing / web / generator / client / UrlGenerator.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.web.generator.client;
18
19 import com.google.gwt.event.dom.client.KeyPressHandler;
20 import com.google.gwt.user.client.ui.ChangeListener;
21 import com.google.gwt.user.client.ui.Grid;
22 import com.google.gwt.user.client.ui.TextBox;
23 import com.google.gwt.user.client.ui.Widget;
24
25 /**
26  * A generator for URL addresses.
27  * 
28  * @author Yohann Coppel
29  */
30 public class UrlGenerator implements GeneratorSource {
31   Grid table = null;
32   TextBox url = new TextBox();
33   
34   public UrlGenerator(ChangeListener listener, KeyPressHandler keyListener) {
35     url.addStyleName(StylesDefs.INPUT_FIELD_REQUIRED);
36     url.addChangeListener(listener);
37     url.addKeyPressHandler(keyListener);
38   }
39   
40   public Grid getWidget() {
41     if (table != null) {
42       // early termination if the table has already been constructed
43       return table;
44     }
45     
46     table = new Grid(1, 2);
47     table.getColumnFormatter().addStyleName(0, "firstColumn");
48     
49     url.setText("http://");
50     
51     table.setText(0, 0, "URL");
52     table.setWidget(0, 1, url);
53     
54     return table;
55   }
56
57   public String getName() {
58     return "URL";
59   }
60
61   public String getText() throws GeneratorException {
62     return getUrlField();
63   }
64
65   private String getUrlField() throws GeneratorException {
66     String input = url.getText();
67     Validators.validateUrl(input);
68     return input;
69   }
70   
71   public void validate(Widget widget) throws GeneratorException {
72     if (widget == url) {
73       getUrlField();
74     }
75   }
76   
77   public void setFocus() {
78     url.setFocus(true);
79   }
80 }