]> source.dussan.org Git - gwtquery.git/blob
d30d489edcb9958f8f74f59893b4ba9b81ebae0e
[gwtquery.git] /
1 /*
2  * Copyright 2011, The gwtquery team.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * 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, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.google.gwt.query.client.plugins.widgets;
17
18 import com.google.gwt.dom.client.Element;
19 import com.google.gwt.dom.client.InputElement;
20 import com.google.gwt.user.client.DOM;
21 import com.google.gwt.user.client.ui.RadioButton;
22
23 /**
24  * 
25  * 
26  */
27 public class RadioButtonWidgetFactory implements WidgetFactory<RadioButton> {
28
29   public static class RadioButtonOption{
30     
31     private String name;
32     
33     public RadioButtonOption() {
34     }
35     
36     public RadioButtonOption(String name){
37       this.name = name;
38     }
39     
40     public String getName() {
41       return name;
42     }
43     
44     public void setName(String name) {
45       this.name = name;
46     }
47     
48   }
49   
50   private RadioButtonOption option;
51   private String radioName;
52   
53   public RadioButtonWidgetFactory(RadioButtonOption option) {
54     this.option = option;
55   }
56   
57   
58   public RadioButton create(Element e) {
59     resolveName(e);
60     
61     RadioButton radioButton = new RadioButton(radioName);
62     if ("input".equalsIgnoreCase(e.getTagName())){
63       copyAttributes((InputElement) e, (InputElement) radioButton.getElement().cast());
64     }else{
65       radioButton.setText(e.getInnerText());
66     }
67     
68     WidgetsUtils.replaceOrAppend(e, radioButton);
69     
70     return radioButton;
71
72   }
73   
74   protected void resolveName(Element e) {
75     if (radioName != null){
76       return;
77     }
78     if (option.getName() != null){
79       radioName = option.getName();
80     }else if ("input".equals(e.getTagName()) && "radio".equals(((InputElement)e).getType())){
81       radioName =  ((InputElement)e).getName();
82     }else{
83       //create an unique string via DOM.createUniqueId...
84       radioName = DOM.createUniqueId();
85     }
86   }
87
88
89   protected String getEquivalentTagName(){
90     return "input";
91   }
92
93   protected void copyAttributes(InputElement source, InputElement destination) {
94     
95     destination.setAccessKey(source.getAccessKey());
96     destination.setDisabled(source.isDisabled());
97     destination.setSize(source.getSize());
98     destination.setValue(source.getValue());    
99   }
100   
101   
102
103 }