View Javadoc

1   /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.student.common.ui.client.configurable.mvc.sections;
17  
18  import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle;
19  import org.kuali.student.common.ui.client.widgets.KSButton;
20  import org.kuali.student.common.ui.client.widgets.KSButtonAbstract.ButtonStyle;
21  
22  import com.google.gwt.event.dom.client.ClickHandler;
23  import com.google.gwt.user.client.ui.Composite;
24  import com.google.gwt.user.client.ui.FlowPanel;
25  
26  @Deprecated
27  public class MultiplicityHeader extends Composite{
28  	
29  	private FlowPanel header = new FlowPanel();
30  	private FlowPanel actions = new FlowPanel();
31  	private FlowPanel clearDiv = new FlowPanel();
32  	private SectionTitle title;
33  	private KSButton help;
34  	private KSButton delete = null;
35  	
36  	public MultiplicityHeader(SectionTitle title, boolean readOnly){
37  		this.title = title;
38  		header.add(title);
39  		
40  		help = new KSButton("?", ButtonStyle.HELP);
41  		actions.add(help);
42  		
43  		if(!readOnly){
44  			delete = new KSButton("X", ButtonStyle.DELETE);
45  			actions.add(delete);
46  		}
47  		
48  		actions.setStyleName("ks-form-header-title-actions");
49  		
50  		header.add(actions);
51  		
52  		clearDiv.setStyleName("clear");
53  		header.add(clearDiv);
54  		this.initWidget(header);
55  	}
56  
57  	public void addDeleteHandler(ClickHandler handler){
58  		if(delete!=null){
59  			delete.addClickHandler(handler);
60  		}
61  	}
62  	
63  	public void addHelpHandler(ClickHandler handler){
64  		help.addClickHandler(handler);
65  	}
66  	
67  }