]> source.dussan.org Git - gwtquery.git/blob
e4e92f68480267ef10cd1a800e1b040355705c64
[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 static com.google.gwt.query.client.GQuery.$;
19
20 import com.google.gwt.dom.client.Element;
21 import com.google.gwt.user.client.ui.Button;
22 import com.google.gwt.user.client.ui.DisclosurePanel;
23 import com.google.gwt.user.client.ui.Label;
24
25 public class DisclosurePanelWidgetFactory implements
26     WidgetFactory<DisclosurePanel> {
27
28   /**
29    * Options used to initialize new {@link Button}
30    * 
31    */
32   public static class DisclosurePanelOptions {
33
34     private String headerSelector;
35     //private String headerTitle;
36
37     public DisclosurePanelOptions() {
38       initDefault();
39     }
40     
41     public DisclosurePanelOptions(String headerSelector) {
42       this.headerSelector = headerSelector;
43      
44     }
45
46     public String getHeaderSelector() {
47       return headerSelector;
48     }
49
50    /* public String getHeaderTitle() {
51       return headerTitle;
52     }*/
53     
54     public void setHeaderSelector(String headerSelector) {
55       this.headerSelector = headerSelector;
56     }
57
58    /* public void setHeaderTitle(String headerTitle) {
59       this.headerTitle = headerTitle;
60     }*/
61
62     private void initDefault() {
63       //headerTitle = null;
64       headerSelector = "h3";
65     }
66   }
67
68   private DisclosurePanelOptions options;
69
70   public DisclosurePanelWidgetFactory(DisclosurePanelOptions options) {
71     this.options = options;
72   }
73
74   public DisclosurePanel create(Element e) {
75     
76     String headerValue = "";
77     /*if (options.getHeaderTitle() != null){
78       headerValue = options.getHeaderTitle();
79     }else{*/
80       headerValue = $(options.getHeaderSelector(), e).first().remove().text();
81     //}
82     
83     DisclosurePanel disclosurePanel = new DisclosurePanel();
84     disclosurePanel.setHeader(new Label(headerValue));
85     
86     WidgetsUtils.replaceOrAppend(e, disclosurePanel);
87     
88     disclosurePanel.add(new WidgetsHtmlPanel(e));
89     
90
91     return disclosurePanel;
92   }
93
94 }