]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/SelectionButtonDialogFieldGroup.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / wizards / dialogfields / SelectionButtonDialogFieldGroup.java
diff --git a/case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/SelectionButtonDialogFieldGroup.java b/case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/SelectionButtonDialogFieldGroup.java
new file mode 100644 (file)
index 0000000..22f9bc0
--- /dev/null
@@ -0,0 +1,358 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jdt.internal.ui.wizards.dialogfields;
+
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.events.SelectionEvent;
+import org.eclipse.swt.events.SelectionListener;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Button;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Group;
+import org.eclipse.swt.widgets.Label;
+
+import org.eclipse.core.runtime.Assert;
+
+import org.eclipse.jdt.core.Flags;
+
+import org.eclipse.jdt.ui.wizards.NewTypeWizardPage;
+
+
+/**
+ * Dialog field describing a group with buttons (Checkboxes, radio buttons..)
+ */
+public class SelectionButtonDialogFieldGroup extends DialogField {
+
+       private Composite fButtonComposite;
+
+       private Button[] fButtons;
+       private String[] fButtonNames;
+       private boolean[] fButtonsSelected;
+       private boolean[] fButtonsEnabled;
+
+       private int fGroupBorderStyle;
+       private int fGroupNumberOfColumns;
+       private int fButtonsStyle;
+
+       /**
+        * Creates a group without border.
+        */
+       public SelectionButtonDialogFieldGroup(int buttonsStyle, String[] buttonNames, int nColumns) {
+               this(buttonsStyle, buttonNames, nColumns, SWT.NONE);
+       }
+
+
+       /**
+        * Creates a group with border (label in border).
+        * Accepted button styles are: SWT.RADIO, SWT.CHECK, SWT.TOGGLE
+        * For border styles see <code>Group</code>
+        */
+       public SelectionButtonDialogFieldGroup(int buttonsStyle, String[] buttonNames, int nColumns, int borderStyle) {
+               super();
+
+               Assert.isTrue(buttonsStyle == SWT.RADIO || buttonsStyle == SWT.CHECK || buttonsStyle == SWT.TOGGLE);
+               fButtonNames= buttonNames;
+               fButtonsStyle= buttonsStyle;
+
+               int nButtons= buttonNames.length;
+               fButtonsSelected= new boolean[nButtons];
+               fButtonsEnabled= new boolean[nButtons];
+               for (int i= 0; i < nButtons; i++) {
+                       fButtonsSelected[i]= false;
+                       fButtonsEnabled[i]= true;
+               }
+               if (buttonsStyle == SWT.RADIO) {
+                       fButtonsSelected[0]= true;
+               }
+
+               fGroupBorderStyle= borderStyle;
+               fGroupNumberOfColumns= (nColumns <= 0) ? nButtons : nColumns;
+
+
+
+       }
+
+       // ------- layout helpers
+
+       /*
+        * @see DialogField#doFillIntoGrid
+        */
+       @Override
+       public Control[] doFillIntoGrid(Composite parent, int nColumns) {
+               assertEnoughColumns(nColumns);
+
+               if (fGroupBorderStyle == SWT.NONE) {
+                       Label label= getLabelControl(parent);
+                       label.setLayoutData(gridDataForLabel(1));
+
+                       Composite buttonsgroup= getSelectionButtonsGroup(parent);
+                       GridData gd= new GridData();
+                       gd.horizontalSpan= nColumns - 1;
+                       buttonsgroup.setLayoutData(gd);
+
+                       return new Control[] { label, buttonsgroup };
+               } else {
+                       Composite buttonsgroup= getSelectionButtonsGroup(parent);
+                       GridData gd= new GridData();
+                       gd.horizontalSpan= nColumns;
+                       buttonsgroup.setLayoutData(gd);
+
+                       return new Control[] { buttonsgroup };
+               }
+       }
+
+       /*
+        * @see DialogField#doFillIntoGrid
+        */
+       @Override
+       public int getNumberOfControls() {
+               return (fGroupBorderStyle == SWT.NONE) ? 2 : 1;
+       }
+
+       // ------- ui creation
+
+       private Button createSelectionButton(int index, Composite group, SelectionListener listener) {
+               Button button= new Button(group, fButtonsStyle | SWT.LEFT);
+               button.setFont(group.getFont());
+               button.setText(fButtonNames[index]);
+               button.setEnabled(isEnabled() && fButtonsEnabled[index]);
+               button.setSelection(fButtonsSelected[index]);
+               button.addSelectionListener(listener);
+               button.setLayoutData(new GridData());
+               return button;
+       }
+
+       /**
+        * Returns the group widget. When called the first time, the widget will be created.
+        * @param parent The parent composite when called the first time, or <code>null</code>
+        * after.
+        */
+       public Composite getSelectionButtonsGroup(Composite parent) {
+               if (fButtonComposite == null) {
+                       assertCompositeNotNull(parent);
+
+                       GridLayout layout= new GridLayout();
+                       layout.makeColumnsEqualWidth= true;
+                       layout.numColumns= fGroupNumberOfColumns;
+
+                       if (fGroupBorderStyle != SWT.NONE) {
+                               Group group= new Group(parent, fGroupBorderStyle);
+                               group.setFont(parent.getFont());
+                               if (fLabelText != null && fLabelText.length() > 0) {
+                                       group.setText(fLabelText);
+                               }
+                               fButtonComposite= group;
+                       } else {
+                               fButtonComposite= new Composite(parent, SWT.NONE);
+                               fButtonComposite.setFont(parent.getFont());
+                               layout.marginHeight= 0;
+                               layout.marginWidth= 0;
+                       }
+
+                       fButtonComposite.setLayout(layout);
+
+                       SelectionListener listener= new SelectionListener() {
+                               public void widgetDefaultSelected(SelectionEvent e) {
+                                       doWidgetSelected(e);
+                               }
+                               public void widgetSelected(SelectionEvent e) {
+                                       doWidgetSelected(e);
+                               }
+                       };
+                       int nButtons= fButtonNames.length;
+                       fButtons= new Button[nButtons];
+                       for (int i= 0; i < nButtons; i++) {
+                               fButtons[i]= createSelectionButton(i, fButtonComposite, listener);
+                       }
+                       int nRows= nButtons / fGroupNumberOfColumns;
+                       int nFillElements= nRows * fGroupNumberOfColumns - nButtons;
+                       for (int i= 0; i < nFillElements; i++) {
+                               createEmptySpace(fButtonComposite);
+                       }
+               }
+               return fButtonComposite;
+       }
+
+       /**
+        * Returns a button from the group or <code>null</code> if not yet created.
+        */
+       public Button getSelectionButton(int index) {
+               if (index >= 0 && index < fButtons.length) {
+                       return fButtons[index];
+               }
+               return null;
+       }
+
+       private void doWidgetSelected(SelectionEvent e) {
+               Button button= (Button)e.widget;
+               for (int i= 0; i < fButtons.length; i++) {
+                       if (fButtons[i] == button) {
+                               fButtonsSelected[i]= button.getSelection();
+                               dialogFieldChanged();
+                               return;
+                       }
+               }
+       }
+
+       // ------ model access
+
+       /**
+        * Returns the selection state of a button contained in the group.
+        * @param index The index of the button
+        */
+       public boolean isSelected(int index) {
+               if (index >= 0 && index < fButtonsSelected.length) {
+                       return fButtonsSelected[index];
+               }
+               return false;
+       }
+
+       /**
+        * Sets the selection state of a button contained in the group.
+        */
+       public void setSelection(int index, boolean selected) {
+               if (index >= 0 && index < fButtonsSelected.length) {
+                       if (fButtonsSelected[index] != selected) {
+                               fButtonsSelected[index]= selected;
+                               if (fButtons != null) {
+                                       Button button= fButtons[index];
+                                       if (isOkToUse(button)) {
+                                               button.setSelection(selected);
+                                       }
+                               }
+                       }
+               }
+       }
+
+       // ------ enable / disable management
+
+       @Override
+       protected void updateEnableState() {
+               super.updateEnableState();
+               if (fButtons != null) {
+                       boolean enabled= isEnabled();
+                       for (int i= 0; i < fButtons.length; i++) {
+                               Button button= fButtons[i];
+                               if (isOkToUse(button)) {
+                                       button.setEnabled(enabled && fButtonsEnabled[i]);
+                               }
+                       }
+               }
+       }
+
+       /**
+        * Sets the enable state of a button contained in the group.
+        */
+       public void enableSelectionButton(int index, boolean enable) {
+               if (index >= 0 && index < fButtonsEnabled.length) {
+                       fButtonsEnabled[index]= enable;
+                       if (fButtons != null) {
+                               Button button= fButtons[index];
+                               if (isOkToUse(button)) {
+                                       button.setEnabled(isEnabled() && enable);
+                               }
+                       }
+               }
+       }
+
+
+       /*(non-Javadoc)
+        * @see org.eclipse.jdt.internal.ui.wizards.dialogfields.DialogField#refresh()
+        */
+       @Override
+       public void refresh() {
+               super.refresh();
+               for (int i= 0; i < fButtons.length; i++) {
+                       Button button= fButtons[i];
+                       if (isOkToUse(button)) {
+                               button.setSelection(fButtonsSelected[i]);
+                       }
+               }
+       }
+
+
+       public void generated_1727347456463010400(Composite composite, int nColumns) {
+               Control labelControl= getLabelControl(composite);
+               LayoutUtil.setHorizontalSpan(labelControl, nColumns);
+       
+               DialogField.createEmptySpace(composite);
+       
+               Control buttonGroup= getSelectionButtonsGroup(composite);
+               LayoutUtil.setHorizontalSpan(buttonGroup, nColumns - 1);
+       }
+
+
+       public void generated_8284357852518978517(boolean createMain, boolean createConstructors, boolean createInherited, boolean canBeModified) {
+               setSelection(0, createMain);
+               setSelection(1, createConstructors);
+               setSelection(2, createInherited);
+       
+               setEnabled(canBeModified);
+       }
+
+
+       public Control generated_1822068743649997511(Composite composite) {
+               LayoutUtil.setHorizontalSpan(getLabelControl(composite), 1);
+       
+               Control control= getSelectionButtonsGroup(composite);
+               return control;
+       }
+
+
+       public void generated_2912400819852663633(NewTypeWizardPage newtypewizardpage) {
+               if (isSelected(newtypewizardpage.PRIVATE_INDEX) || isSelected(newtypewizardpage.PROTECTED_INDEX)) {
+                       setSelection(newtypewizardpage.PRIVATE_INDEX, false);
+                       setSelection(newtypewizardpage.PROTECTED_INDEX, false);
+                       setSelection(newtypewizardpage.PUBLIC_INDEX, true);
+               }
+       }
+
+
+       public int generated_600301716912768696(NewTypeWizardPage newtypewizardpage, int mdf) {
+               if (isSelected(newtypewizardpage.PUBLIC_INDEX)) {
+                       mdf+= newtypewizardpage.F_PUBLIC;
+               } else if (isSelected(newtypewizardpage.PRIVATE_INDEX)) {
+                       mdf+= newtypewizardpage.F_PRIVATE;
+               } else if (isSelected(newtypewizardpage.PROTECTED_INDEX)) {
+                       mdf+= newtypewizardpage.F_PROTECTED;
+               }
+               if (newtypewizardpage.fOtherMdfButtons.isSelected(newtypewizardpage.ABSTRACT_INDEX)) {
+                       mdf+= newtypewizardpage.F_ABSTRACT;
+               }
+               return mdf;
+       }
+
+
+       public void generated_2119629426711151980(NewTypeWizardPage newtypewizardpage, int modifiers) {
+               if (Flags.isPublic(modifiers)) {
+                       setSelection(newtypewizardpage.PUBLIC_INDEX, true);
+               } else if (Flags.isPrivate(modifiers)) {
+                       setSelection(newtypewizardpage.PRIVATE_INDEX, true);
+               } else if (Flags.isProtected(modifiers)) {
+                       setSelection(newtypewizardpage.PROTECTED_INDEX, true);
+               } else {
+                       setSelection(newtypewizardpage.DEFAULT_INDEX, true);
+               }
+       }
+
+
+       public void generated_2457168104165628189(NewTypeWizardPage newtypewizardpage, boolean enclosing) {
+               newtypewizardpage.fPackageDialogField.setEnabled(newtypewizardpage.fCanModifyPackage && !enclosing);
+               newtypewizardpage.fEnclosingTypeDialogField.setEnabled(newtypewizardpage.fCanModifyEnclosingType && enclosing);
+               if (newtypewizardpage.fTypeKind == NewTypeWizardPage.ENUM_TYPE || newtypewizardpage.fTypeKind == NewTypeWizardPage.ANNOTATION_TYPE) {
+                   enableSelectionButton(newtypewizardpage.ABSTRACT_INDEX, enclosing);
+                   enableSelectionButton(newtypewizardpage.ENUM_ANNOT_STATIC_INDEX, enclosing);
+               }
+       }
+
+}