1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / preferences / TodoTaskConfigurationBlock.java
index 8512c55..e487226 100644 (file)
@@ -35,108 +35,138 @@ import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.Control;
 
 /** 
-  */
+ */
 public class TodoTaskConfigurationBlock extends OptionsConfigurationBlock {
 
-       private static final String PREF_COMPILER_TASK_TAGS= JavaCore.COMPILER_TASK_TAGS;
-       private static final String PREF_COMPILER_TASK_PRIORITIES= JavaCore.COMPILER_TASK_PRIORITIES;
-       
-       private static final String PRIORITY_HIGH= JavaCore.COMPILER_TASK_PRIORITY_HIGH;
-       private static final String PRIORITY_NORMAL= JavaCore.COMPILER_TASK_PRIORITY_NORMAL;
-       private static final String PRIORITY_LOW= JavaCore.COMPILER_TASK_PRIORITY_LOW;          
-       
+       private static final String PREF_COMPILER_TASK_TAGS = JavaCore.COMPILER_TASK_TAGS;
+
+       private static final String PREF_COMPILER_TASK_PRIORITIES = JavaCore.COMPILER_TASK_PRIORITIES;
+
+       private static final String PRIORITY_HIGH = JavaCore.COMPILER_TASK_PRIORITY_HIGH;
+
+       private static final String PRIORITY_NORMAL = JavaCore.COMPILER_TASK_PRIORITY_NORMAL;
+
+       private static final String PRIORITY_LOW = JavaCore.COMPILER_TASK_PRIORITY_LOW;
+
        public static class TodoTask {
                public String name;
+
                public String priority;
        }
-       
-       private static class TodoTaskLabelProvider extends LabelProvider implements ITableLabelProvider {
-       
-               /* (non-Javadoc)
+
+       private static class TodoTaskLabelProvider extends LabelProvider implements
+                       ITableLabelProvider {
+
+               /*
+                * (non-Javadoc)
+                * 
                 * @see org.eclipse.jface.viewers.ILabelProvider#getImage(java.lang.Object)
                 */
                public Image getImage(Object element) {
                        return null; // JavaPluginImages.get(JavaPluginImages.IMG_OBJS_REFACTORING_INFO);
                }
 
-               /* (non-Javadoc)
+               /*
+                * (non-Javadoc)
+                * 
                 * @see org.eclipse.jface.viewers.ILabelProvider#getText(java.lang.Object)
                 */
                public String getText(Object element) {
                        return getColumnText(element, 0);
                }
-               
-               /* (non-Javadoc)
-                * @see org.eclipse.jface.viewers.ITableLabelProvider#getColumnImage(java.lang.Object, int)
+
+               /*
+                * (non-Javadoc)
+                * 
+                * @see org.eclipse.jface.viewers.ITableLabelProvider#getColumnImage(java.lang.Object,
+                *      int)
                 */
                public Image getColumnImage(Object element, int columnIndex) {
                        return null;
                }
-               /* (non-Javadoc)
-                * @see org.eclipse.jface.viewers.ITableLabelProvider#getColumnText(java.lang.Object, int)
+
+               /*
+                * (non-Javadoc)
+                * 
+                * @see org.eclipse.jface.viewers.ITableLabelProvider#getColumnText(java.lang.Object,
+                *      int)
                 */
                public String getColumnText(Object element, int columnIndex) {
-                       TodoTask task= (TodoTask) element;
+                       TodoTask task = (TodoTask) element;
                        if (columnIndex == 0) {
                                return task.name;
                        } else {
                                if (PRIORITY_HIGH.equals(task.priority)) {
-                                       return PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.high.priority"); //$NON-NLS-1$
+                                       return PreferencesMessages
+                                                       .getString("TodoTaskConfigurationBlock.markers.tasks.high.priority"); //$NON-NLS-1$
                                } else if (PRIORITY_NORMAL.equals(task.priority)) {
-                                       return PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.normal.priority"); //$NON-NLS-1$
+                                       return PreferencesMessages
+                                                       .getString("TodoTaskConfigurationBlock.markers.tasks.normal.priority"); //$NON-NLS-1$
                                } else if (PRIORITY_LOW.equals(task.priority)) {
-                                       return PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.low.priority"); //$NON-NLS-1$
+                                       return PreferencesMessages
+                                                       .getString("TodoTaskConfigurationBlock.markers.tasks.low.priority"); //$NON-NLS-1$
                                }
                                return ""; //$NON-NLS-1$
-                       }       
+                       }
                }
 
        }
-       
-       private static final int IDX_ADD= 0;
-       private static final int IDX_EDIT= 1;
-       private static final int IDX_REMOVE= 2;
-       
+
+       private static final int IDX_ADD = 0;
+
+       private static final int IDX_EDIT = 1;
+
+       private static final int IDX_REMOVE = 2;
+
        private IStatus fTaskTagsStatus;
+
        private ListDialogField fTodoTasksList;
 
-       public TodoTaskConfigurationBlock(IStatusChangeListener context, IJavaProject project) {
+       public TodoTaskConfigurationBlock(IStatusChangeListener context,
+                       IJavaProject project) {
                super(context, project, getKeys());
-                                               
-               TaskTagAdapter adapter=  new TaskTagAdapter();
-               String[] buttons= new String[] {
-                       /* 0 */ PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.add.button"), //$NON-NLS-1$
-                       /* 1 */ PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.edit.button"), //$NON-NLS-1$
-                       /* 2 */ PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.remove.button"), //$NON-NLS-1$
-                       
+
+               TaskTagAdapter adapter = new TaskTagAdapter();
+               String[] buttons = new String[] {
+                               /* 0 */PreferencesMessages
+                                               .getString("TodoTaskConfigurationBlock.markers.tasks.add.button"), //$NON-NLS-1$
+                               /* 1 */PreferencesMessages
+                                               .getString("TodoTaskConfigurationBlock.markers.tasks.edit.button"), //$NON-NLS-1$
+                               /* 2 */PreferencesMessages
+                                               .getString("TodoTaskConfigurationBlock.markers.tasks.remove.button"), //$NON-NLS-1$
+
                };
-               fTodoTasksList= new ListDialogField(adapter, buttons, new TodoTaskLabelProvider());
+               fTodoTasksList = new ListDialogField(adapter, buttons,
+                               new TodoTaskLabelProvider());
                fTodoTasksList.setDialogFieldListener(adapter);
-               fTodoTasksList.setLabelText(PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.label")); //$NON-NLS-1$
+               fTodoTasksList.setLabelText(PreferencesMessages
+                               .getString("TodoTaskConfigurationBlock.markers.tasks.label")); //$NON-NLS-1$
                fTodoTasksList.setRemoveButtonIndex(IDX_REMOVE);
-               
-               String[] columnsHeaders= new String[] {
-                       PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.name.column"), //$NON-NLS-1$
-                       PreferencesMessages.getString("TodoTaskConfigurationBlock.markers.tasks.priority.column"), //$NON-NLS-1$
+
+               String[] columnsHeaders = new String[] {
+                               PreferencesMessages
+                                               .getString("TodoTaskConfigurationBlock.markers.tasks.name.column"), //$NON-NLS-1$
+                               PreferencesMessages
+                                               .getString("TodoTaskConfigurationBlock.markers.tasks.priority.column"), //$NON-NLS-1$
                };
-               
-               fTodoTasksList.setTableColumns(new ListDialogField.ColumnsDescription(columnsHeaders, true));
+
+               fTodoTasksList.setTableColumns(new ListDialogField.ColumnsDescription(
+                               columnsHeaders, true));
                unpackTodoTasks();
                if (fTodoTasksList.getSize() > 0) {
                        fTodoTasksList.selectFirstElement();
                } else {
                        fTodoTasksList.enableButton(IDX_EDIT, false);
                }
-               
-               fTaskTagsStatus= new StatusInfo();              
+
+               fTaskTagsStatus = new StatusInfo();
        }
-       
+
        private final static String[] getKeys() {
-               return new String[] {
-                       PREF_COMPILER_TASK_TAGS, PREF_COMPILER_TASK_PRIORITIES
-               };      
-       }       
-       
+               return new String[] { PREF_COMPILER_TASK_TAGS,
+                               PREF_COMPILER_TASK_PRIORITIES };
+       }
+
        public class TaskTagAdapter implements IListAdapter, IDialogFieldListener {
 
                private boolean canEdit(ListDialogField field) {
@@ -150,7 +180,7 @@ public class TodoTaskConfigurationBlock extends OptionsConfigurationBlock {
                public void selectionChanged(ListDialogField field) {
                        field.enableButton(IDX_EDIT, canEdit(field));
                }
-                       
+
                public void doubleClicked(ListDialogField field) {
                        if (canEdit(field)) {
                                doTodoButtonPressed(IDX_EDIT);
@@ -159,38 +189,39 @@ public class TodoTaskConfigurationBlock extends OptionsConfigurationBlock {
 
                public void dialogFieldChanged(DialogField field) {
                        validateSettings(PREF_COMPILER_TASK_TAGS, null);
-               }                       
-               
+               }
+
        }
-               
+
        protected Control createContents(Composite parent) {
                setShell(parent.getShell());
-               
-               Composite markersComposite= createMarkersTabContent(parent);
-               
+
+               Composite markersComposite = createMarkersTabContent(parent);
+
                validateSettings(null, null);
-       
+
                return markersComposite;
        }
 
        private Composite createMarkersTabContent(Composite folder) {
-               
-               GridLayout layout= new GridLayout();
-               layout.marginHeight= 0;
-               layout.marginWidth= 0;
-               layout.numColumns= 2;
-               
-               Composite markersComposite= new Composite(folder, SWT.NULL);
+
+               GridLayout layout = new GridLayout();
+               layout.marginHeight = 0;
+               layout.marginWidth = 0;
+               layout.numColumns = 2;
+
+               Composite markersComposite = new Composite(folder, SWT.NULL);
                markersComposite.setLayout(layout);
-               
+
                fTodoTasksList.doFillIntoGrid(markersComposite, 3);
                LayoutUtil.setHorizontalSpan(fTodoTasksList.getLabelControl(null), 2);
-               
-               GridData data= (GridData)fTodoTasksList.getListControl(null).getLayoutData();
-               data.grabExcessHorizontalSpace= true;
-               data.grabExcessVerticalSpace= true;
-               data.verticalAlignment= GridData.FILL;
-               //data.heightHint= SWTUtil.getTableHeightHint(table, 6);
+
+               GridData data = (GridData) fTodoTasksList.getListControl(null)
+                               .getLayoutData();
+               data.grabExcessHorizontalSpace = true;
+               data.grabExcessVerticalSpace = true;
+               data.verticalAlignment = GridData.FILL;
+               // data.heightHint= SWTUtil.getTableHeightHint(table, 6);
 
                return markersComposite;
        }
@@ -198,22 +229,25 @@ public class TodoTaskConfigurationBlock extends OptionsConfigurationBlock {
        protected void validateSettings(String changedKey, String newValue) {
                if (changedKey != null) {
                        if (PREF_COMPILER_TASK_TAGS.equals(changedKey)) {
-                               fTaskTagsStatus= validateTaskTags();
+                               fTaskTagsStatus = validateTaskTags();
                        } else {
                                return;
                        }
                } else {
-                       fTaskTagsStatus= validateTaskTags();
-               }               
-               IStatus status= fTaskTagsStatus; //StatusUtil.getMostSevere(new IStatus[] { fTaskTagsStatus });
+                       fTaskTagsStatus = validateTaskTags();
+               }
+               IStatus status = fTaskTagsStatus; // StatusUtil.getMostSevere(new
+                                                                                       // IStatus[] { fTaskTagsStatus });
                fContext.statusChanged(status);
        }
-       
+
        private IStatus validateTaskTags() {
                return new StatusInfo();
-       }       
+       }
 
-       /* (non-Javadoc)
+       /*
+        * (non-Javadoc)
+        * 
         * @see net.sourceforge.phpdt.internal.ui.preferences.OptionsConfigurationBlock#performOk(boolean)
         */
        public boolean performOk(boolean enabled) {
@@ -221,64 +255,70 @@ public class TodoTaskConfigurationBlock extends OptionsConfigurationBlock {
                return super.performOk(enabled);
        }
 
-       
        protected String[] getFullBuildDialogStrings(boolean workspaceSettings) {
-               String title= PreferencesMessages.getString("TodoTaskConfigurationBlock.needsbuild.title"); //$NON-NLS-1$
+               String title = PreferencesMessages
+                               .getString("TodoTaskConfigurationBlock.needsbuild.title"); //$NON-NLS-1$
                String message;
                if (fProject == null) {
-                       message= PreferencesMessages.getString("TodoTaskConfigurationBlock.needsfullbuild.message"); //$NON-NLS-1$
+                       message = PreferencesMessages
+                                       .getString("TodoTaskConfigurationBlock.needsfullbuild.message"); //$NON-NLS-1$
                } else {
-                       message= PreferencesMessages.getString("TodoTaskConfigurationBlock.needsprojectbuild.message"); //$NON-NLS-1$
-               }       
+                       message = PreferencesMessages
+                                       .getString("TodoTaskConfigurationBlock.needsprojectbuild.message"); //$NON-NLS-1$
+               }
                return new String[] { title, message };
-       }       
-       
-       /* (non-Javadoc)
+       }
+
+       /*
+        * (non-Javadoc)
+        * 
         * @see net.sourceforge.phpdt.internal.ui.preferences.OptionsConfigurationBlock#updateControls()
         */
        protected void updateControls() {
                unpackTodoTasks();
        }
-       
+
        private void unpackTodoTasks() {
-               String currTags= (String) fWorkingValues.get(PREF_COMPILER_TASK_TAGS);  
-               String currPrios= (String) fWorkingValues.get(PREF_COMPILER_TASK_PRIORITIES);
-               String[] tags= getTokens(currTags, ","); //$NON-NLS-1$
-               String[] prios= getTokens(currPrios, ","); //$NON-NLS-1$
-               ArrayList elements= new ArrayList(tags.length);
-               for (int i= 0; i < tags.length; i++) {
-                       TodoTask task= new TodoTask();
-                       task.name= tags[i].trim();
-                       task.priority= (i < prios.length) ? prios[i] : PRIORITY_NORMAL;
+               String currTags = (String) fWorkingValues.get(PREF_COMPILER_TASK_TAGS);
+               String currPrios = (String) fWorkingValues
+                               .get(PREF_COMPILER_TASK_PRIORITIES);
+               String[] tags = getTokens(currTags, ","); //$NON-NLS-1$
+               String[] prios = getTokens(currPrios, ","); //$NON-NLS-1$
+               ArrayList elements = new ArrayList(tags.length);
+               for (int i = 0; i < tags.length; i++) {
+                       TodoTask task = new TodoTask();
+                       task.name = tags[i].trim();
+                       task.priority = (i < prios.length) ? prios[i] : PRIORITY_NORMAL;
                        elements.add(task);
                }
                fTodoTasksList.setElements(elements);
        }
-       
+
        private void packTodoTasks() {
-               StringBuffer tags= new StringBuffer();
-               StringBuffer prios= new StringBuffer();
-               List list= fTodoTasksList.getElements();
-               for (int i= 0; i < list.size(); i++) {
+               StringBuffer tags = new StringBuffer();
+               StringBuffer prios = new StringBuffer();
+               List list = fTodoTasksList.getElements();
+               for (int i = 0; i < list.size(); i++) {
                        if (i > 0) {
                                tags.append(',');
                                prios.append(',');
                        }
-                       TodoTask elem= (TodoTask) list.get(i);
+                       TodoTask elem = (TodoTask) list.get(i);
                        tags.append(elem.name);
                        prios.append(elem.priority);
                }
                fWorkingValues.put(PREF_COMPILER_TASK_TAGS, tags.toString());
                fWorkingValues.put(PREF_COMPILER_TASK_PRIORITIES, prios.toString());
        }
-               
+
        private void doTodoButtonPressed(int index) {
-               TodoTask edited= null;
+               TodoTask edited = null;
                if (index != IDX_ADD) {
-                       edited= (TodoTask) fTodoTasksList.getSelectedElements().get(0);
+                       edited = (TodoTask) fTodoTasksList.getSelectedElements().get(0);
                }
-               
-               TodoTaskInputDialog dialog= new TodoTaskInputDialog(getShell(), edited, fTodoTasksList.getElements());
+
+               TodoTaskInputDialog dialog = new TodoTaskInputDialog(getShell(),
+                               edited, fTodoTasksList.getElements());
                if (dialog.open() == Window.OK) {
                        if (edited != null) {
                                fTodoTasksList.replaceElement(edited, dialog.getResult());