Home | History | Annotate | Download | only in widgets

Lines Matching defs:mTable

59     private Table mTable;
97 mTable = new Table(mInnerGroup, style);
98 mTable.setHeaderVisible(true);
99 mTable.setLinesVisible(false);
106 mTable.setLayoutData(data);
112 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
114 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
116 final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
118 final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
121 adjustColumnsWidth(mTable, column0, column1, column2, column3);
122 setupSelectionListener(mTable);
124 setupTooltip(mTable);
163 fillTable(mTable);
199 if (mTable != null && !mTable.isDisposed()) {
200 for (TableItem i : mTable.getItems()) {
227 if (mTable == null || mTable.isDisposed()) {
231 for (TableItem i : mTable.getItems()) {
435 if (mInnerGroup != null && mTable != null && !mTable.isDisposed()) {
452 Shell shell = new Shell(mTable.getShell(), SWT.NO_TRIM);