1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
* Copyright 2000-2013 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.client.debug.internal;
import com.google.gwt.user.client.ui.Button;
/**
* Simple extension of {@link Button} that is preconfigured with for use in
* {@link VDebugWindow}. Uses icon-font for icons, and allows title to be
* specified in the constructor.
*
* @since 7.1
* @author Vaadin Ltd
*/
public class DebugButton extends Button {
protected boolean active = false;
/**
* Creates a {@link Button} with the given icon-font icon. The icon id will
* be used in the <i>data-icon</i> attribute of an <i><i></i> -tag.
*
* @param icon
* Identifier for the desired icon in an icon-font
*/
public DebugButton(Icon icon) {
this(icon, null, null);
}
/*-
public DebugButton(String caption) {
this(null, null, caption);
}
public DebugButton(String caption, String title) {
this(null, title, caption);
}
-*/
/**
* Creates a {@link Button} with the given icon-font icon and title
* (tooltip). The icon id will be used in the <i>data-icon</i> attribute of
* an <i><i></i> -tag.
*
* @param icon
* Identifier for the desired icon in an icon-font
* @param title
* Button title (tooltip)
*
*/
public DebugButton(Icon icon, String title) {
this(icon, title, null);
}
/**
* Creates a {@link Button} with the given icon-font icon, title (tooltip),
* and caption. The icon id will be used in the <i>data-icon</i> attribute
* of an <i><i></i> -tag.
*
* @param icon
* Identifier for the desired icon in an icon-font
* @param title
* Title (tooltip)
* @param caption
* Button baption
*/
public DebugButton(Icon icon, String title, String caption) {
super((icon != null ? icon : "") + (caption != null ? caption : ""));
if (title != null) {
setTitle(title);
}
setStylePrimaryName(VDebugWindow.STYLENAME_BUTTON);
}
/**
* Adds or removes a stylename, indicating whether or not the button is in
* it's active state.
*
* @param active
*/
public void setActive(boolean active) {
this.active = active;
setStyleDependentName(VDebugWindow.STYLENAME_ACTIVE, active);
}
/**
* Indicates wheter the Button is currently in its active state or not
*
* @return true if the Button is active, false otherwise
*/
public boolean isActive() {
return active;
}
}
|