Addition of tooltip behavior.
[utils] / wicket / components / src / main / java / org / wamblee / wicket / behavior / TitleAttributeTooltipBehavior.java
1 /*
2  * Copyright 2005-2010 the original author or 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 package org.wamblee.wicket.behavior;
17
18 import org.apache.wicket.Component;
19 import org.apache.wicket.Page;
20 import org.apache.wicket.behavior.HeaderContributor;
21 import org.apache.wicket.markup.html.IHeaderResponse;
22 import org.apache.wicket.markup.html.JavascriptPackageResource;
23 import org.wamblee.wicket.jquery.JQueryHeaderContributor;
24 import org.wamblee.wicket.jquery.AbstractJQueryBehavior;
25
26 /**
27  * Tooltip behavior that adds tooltips based on the title attribute in an HTML
28  * document. The behavior may be attached to pages or components and applies to
29  * the element and its children to which it is applied.
30  * 
31  * @author Erik Brakkee
32  * 
33  */
34 public class TitleAttributeTooltipBehavior extends AbstractJQueryBehavior {
35
36     private static final String READY_FUNCTION = "org.wamblee.tooltip.clientside";
37
38     static final String SCRIPT = "wamblee-tooltip.js";
39
40     private static HeaderContributor BEHAVIOR = JavascriptPackageResource
41         .getHeaderContribution(TitleAttributeTooltipBehavior.class, SCRIPT);
42
43     private String border;
44     private String padding;
45     private String background;
46
47     public TitleAttributeTooltipBehavior() {
48         super(READY_FUNCTION, new SupportBehavior(), BEHAVIOR);
49     }
50     
51     public TitleAttributeTooltipBehavior border(String aValue) { 
52         border = aValue;
53         return this; 
54     }
55     
56     public TitleAttributeTooltipBehavior padding(String aValue) { 
57         padding = aValue; 
58         return this; 
59     }
60     
61     public TitleAttributeTooltipBehavior background(String aValue) { 
62         background = aValue; 
63         return this; 
64     }
65     
66     @Override
67     protected Object getConfigurationObject() {
68         return this; 
69     }
70     
71     public String getBorder() {
72         return border;
73     }
74     
75     public String getPadding() {
76         return padding;
77     }
78     
79     public String getBackground() {
80         return background;
81     }
82
83 }