blob: 756970898ea838b007cb4d33768ee5abf2b50941 (
plain)
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
|
package com.vaadin.tests.components.textarea;
import com.vaadin.event.FieldEvents.TextChangeEvent;
import com.vaadin.event.FieldEvents.TextChangeListener;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.AbstractField;
import com.vaadin.ui.AbstractTextField;
import com.vaadin.ui.AbstractTextField.TextChangeEventMode;
import com.vaadin.ui.Button;
import com.vaadin.ui.Label;
import com.vaadin.ui.TextArea;
import com.vaadin.ui.TextField;
public class TextAreaCursorPosition extends TestBase {
private TextField cursorPosition = new TextField("Cursor position");
@Override
public void setup() {
Label label = new Label(
"Test of calculation of cursor position of TextArea");
TextArea textArea = new TextArea();
addListener(textArea);
addComponent(label);
addComponent(textArea);
addComponent(cursorPosition);
cursorPosition.setValue("?");
addComponent(new Button("Force position update"));
}
public void addListener(AbstractField newField) {
AbstractTextField newTextField = (AbstractTextField) newField;
newTextField.setTextChangeEventMode(TextChangeEventMode.EAGER);
newTextField.addListener(new TextChangeListener() {
@Override
public void textChange(TextChangeEvent event) {
AbstractTextField component = (AbstractTextField) event
.getComponent();
cursorPosition.setValue(String.valueOf(component
.getCursorPosition()));
}
});
}
@Override
protected String getDescription() {
return "Writing something in the field updates the cursor position field. The position field can also be updated using the button.";
}
@Override
protected Integer getTicketNumber() {
return 7726;
}
}
|