Home | History | Annotate | Download | only in table

Lines Matching defs:m_tooltip

32   private Shell m_tooltip;
56 if (control == m_tooltip) {
112 if (m_tooltip != null && !m_tooltip.isDisposed()) {
113 m_tooltip.dispose();
115 m_tooltip = null;
145 m_tooltip = new Shell(m_table.getShell(), SWT.NO_FOCUS | SWT.ON_TOP | SWT.TOOL | SWT.SINGLE);
146 configureColors(m_tooltip);
147 GridLayoutFactory.create(m_tooltip).noMargins();
150 Control control = provider.createTooltipControl(m_property, m_tooltip, endX - startX, this);
165 m_tooltip.setLocation(tooltipLocation.x, tooltipLocation.y);
171 m_tooltip.setSize(1000, 1000);
173 m_tooltip.setSize(m_tooltip.computeSize(SWT.DEFAULT, SWT.DEFAULT));
174 provider.show(m_tooltip);