Home | History | Annotate | Download | only in table

Lines Matching refs:control

25 import org.eclipse.swt.widgets.Control;
51 public static Control createTooltipControl(Composite parent, String header, String details) {
55 public static Control createTooltipControl(Composite parent,
59 // prepare Control
60 Control control;
68 control = createTooltipControl_Browser(parent, html, heightLimit);
70 control = createTooltipControl_Label(parent, details);
77 Control tooltipControl = (Control) event.widget;
81 control.addListener(SWT.MouseExit, listener);
84 return control;
90 private static Control createTooltipControl_Browser(Composite parent,
300 private static Control createTooltipControl_Label(Composite parent, String html) {
321 private static void hideTooltip(Control tooltip) {