comparison dwtx/jface/internal/ConfigureColumnsDialog.d @ 90:7ffeace6c47f

Update 3.4M7 to 3.4
author Frank Benoit <benoit@tionex.de>
date Sun, 06 Jul 2008 23:30:07 +0200
parents 5df4896124c7
children
comparison
equal deleted inserted replaced
89:040da1cb0d76 90:7ffeace6c47f
202 202
203 protected Control createDialogArea(Composite parent) { 203 protected Control createDialogArea(Composite parent) {
204 Composite composite = cast(Composite) super.createDialogArea(parent); 204 Composite composite = cast(Composite) super.createDialogArea(parent);
205 205
206 table = new Table(composite, DWT.BORDER | DWT.SINGLE | DWT.V_SCROLL 206 table = new Table(composite, DWT.BORDER | DWT.SINGLE | DWT.V_SCROLL
207 | DWT.H_SCROLL | DWT.FULL_SELECTION /* 207 | DWT.H_SCROLL /*
208 * | DWT.CHECK 208 * | DWT.CHECK
209 */); 209 */);
210 for (int i = 0; i < columnObjects.length; i++) { 210 for (int i = 0; i < columnObjects.length; i++) {
211 TableItem tableItem = new TableItem(table, DWT.NONE); 211 TableItem tableItem = new TableItem(table, DWT.NONE);
212 tableItem.setText(columnObjects[i].name); 212 tableItem.setText(columnObjects[i].name);
278 // ignore for now 278 // ignore for now
279 } 279 }
280 } 280 }
281 }); 281 });
282 282
283 Dialog.applyDialogFont(composite);
284
283 return composite; 285 return composite;
284 } 286 }
285 287
286 /** 288 /**
287 * @param table 289 * @param table