Search in sources :

Example 1 with Twistie

use of org.eclipse.ui.forms.widgets.Twistie in project aero.minova.rcp by minova-afis.

the class TraverseEnterHandler method getNextRequired.

/**
 * Diese Methode ermittelt das nächste leere Pflichtfeld nach folgendem Muster: <br>
 * <br>
 * 1. Prüfen, ob LookupEnterSelectsNextRequired gesetzt ist und ein Lookup mit offenen Popup selektiert ist:<br>
 * <br>
 * LookupEnterSelectsNextRequired ist nicht gesetzt: <br>
 * Bei einem Lookup mit offenen Popup wird der ausgewählte Wert festgesetzt und das Lookup bleibt selektiert. <br>
 * <br>
 * LookupEnterSelectsNextRequired ist gesetzt:<br>
 * Bei einem Lookup mit offenen Popup wird der ausgewählte Wert festgesetzt und das nächste leere Pflichtfeld selektiert. <br>
 * <br>
 * 2. Prüfen, ob EnterSelectsFirstRequired gesetzt ist und kein Lookup mit offenem Popup selektiert ist: <br>
 * <br>
 * EnterSelectsFirstRequired ist gesetzt: <br>
 * Begonnen mit der ersten Section, wird das erste leere Pflichtfeld ermittelt und selektiert. <br>
 * <br>
 * EnterSelectsFirstRequired ist nicht gesetzt und es ist kein Lookup mit offenem Popup selektiert: <br>
 * - Beginnend mit der Section, in der das aktuell selektierte Control sich befindet, wird das nächste leere Pflichtfeld ermittelt. Dabei werden nur die
 * Controls nach dem aktuell selektiertem geprüft.<br>
 * - Wenn kein Pflichtfeld gefunden wurde, werden die Sections, die nach der Section des selektierten Controls kommen, durchsucht.<br>
 * - Falls am Ende des Parts angekommen und immer noch kein Pflichtfeld selektiert wurde, wird mit den Sections vor dem des selektierten Control weiter
 * gemacht. Beginnend mit der ersten section <br>
 * - Bei der Section des aktuell selektierten Controls angekommen ohne ein Pflichtfeld selktiert zu haben, werden nun die Controls in der Section und vor
 * dem selktierten Control durchsucht. <br>
 * <br>
 * Wenn kein Pflichtfeld gefunden wird, bleibt das aktuelle Pflichtfeld selektiert.
 *
 * @param control
 *            fokussiertes Control
 * @param mDetail
 * @param popupOpen
 */
private void getNextRequired(Control control, MDetail mDetail, boolean popupOpen) {
    Preferences preferences = InstanceScope.INSTANCE.getNode(ApplicationPreferences.PREFERENCES_NODE);
    boolean lookupEnterSelectsNextRequired = (boolean) InstancePreferenceAccessor.getValue(preferences, ApplicationPreferences.LOOKUP_ENTER_SELECTS_NEXT_REQUIRED, DisplayType.CHECK, true, locale);
    boolean enterSelectsFirstRequired = (boolean) InstancePreferenceAccessor.getValue(preferences, ApplicationPreferences.ENTER_SELECTS_FIRST_REQUIRED, DisplayType.CHECK, true, locale);
    Control focussedControl = null;
    if (control.getParent() instanceof TextAssist || control.getParent() instanceof LookupComposite) {
        focussedControl = control.getParent();
    } else {
        focussedControl = control;
    }
    // Wir holen uns das MField des selektierten Felds.
    Control fc = null;
    Composite comp = null;
    Section fcSection = null;
    if (focussedControl instanceof NatTable) {
        fcSection = (Section) focussedControl.getData(Constants.GRID_DATA_SECTION);
        ((NatTable) focussedControl).commitAndCloseActiveCellEditor();
    } else {
        fcSection = ((SectionAccessor) ((MField) control.getData(Constants.CONTROL_FIELD)).getmSection().getSectionAccessor()).getSection();
    }
    if (focussedControl instanceof LookupComposite) {
        LookupComposite lookup = (LookupComposite) focussedControl;
        // Wir holen uns den Status des Popup des Lookup
        popupOpen = lookup.popupIsOpen();
    }
    for (Control children : fcSection.getChildren()) {
        if (children instanceof Composite && !(children instanceof ToolBar) && !(children instanceof ImageHyperlink)) {
            comp = (Composite) children;
            break;
        }
    }
    // Wir prüfen ob die Preference LookupEnterSelectsNextRequired nicht gesetzt ist und das Lookup offen ist.
    if (!lookupEnterSelectsNextRequired && popupOpen) {
        focussedControl.setFocus();
        if (focussedControl instanceof LookupComposite) {
            LookupComposite lookup = (LookupComposite) focussedControl;
            lookup.closePopup();
            MField field = (MField) focussedControl.getData(Constants.CONTROL_FIELD);
            setLookupValue(field, lookup);
        }
        return;
    }
    if (!enterSelectsFirstRequired || popupOpen) {
        boolean cellSelected = false;
        if (focussedControl instanceof NatTable) {
            cellSelected = getNextRequiredNatTableCell(focussedControl, true);
        }
        LookupComposite lookup = null;
        if (focussedControl instanceof LookupComposite) {
            MField selectedField = (MField) focussedControl.getData(Constants.CONTROL_FIELD);
            lookup = (LookupComposite) focussedControl;
            if (popupOpen) {
                setLookupValue(selectedField, lookup);
            } else {
                selectedField.setValue(selectedField.getValue(), false);
            }
        }
        if (!cellSelected && focussedControl instanceof NatTable) {
            NatTable natTable = (NatTable) focussedControl;
            ((SelectionLayer) natTable.getData(Constants.GRID_DATA_SELECTIONLAYER)).clear();
        }
        if (!cellSelected) {
            Control[] tabListArrayFromFocussedControlSection = comp.getTabList();
            List<Control> tabListFromFocussedControlSection = arrayToList(tabListArrayFromFocussedControlSection);
            List<Section> sectionList = ((DetailAccessor) mDetail.getDetailAccessor()).getSectionList();
            // [0,1,2,3,4,5,6,7,8,9] --> sublist(0,5) = [0,1,2,3,4]
            int indexFocussedControl = tabListFromFocussedControlSection.indexOf(focussedControl);
            fc = getNextRequiredControl(tabListFromFocussedControlSection.subList(indexFocussedControl + 1, tabListFromFocussedControlSection.size()));
            if (fc != null) {
                return;
            }
            int indexFocussedControlSection = sectionList.indexOf(fcSection);
            fc = getNextRequiredControlOtherSection(focussedControl, sectionList.subList(indexFocussedControlSection + 1, sectionList.size()));
            if (fc != null) {
                return;
            }
            fc = getNextRequiredControlOtherSection(focussedControl, sectionList.subList(0, indexFocussedControlSection + 1));
            if (fc != null) {
                return;
            }
            fc = getNextRequiredControl(tabListFromFocussedControlSection.subList(0, indexFocussedControl + 1));
            if (fc == null) {
                if (focussedControl instanceof LookupComposite) {
                    lookup = (LookupComposite) focussedControl;
                    lookup.closePopup();
                }
                return;
            }
        }
    } else {
        LookupComposite lookup = null;
        if (focussedControl instanceof LookupComposite) {
            MField selectedField = (MField) focussedControl.getData(Constants.CONTROL_FIELD);
            lookup = (LookupComposite) focussedControl;
            if (popupOpen) {
                setLookupValue(selectedField, lookup);
            } else {
                selectedField.setValue(selectedField.getValue(), false);
            }
        }
        for (MSection mSection : mDetail.getMSectionList()) {
            Composite compo = null;
            Section section = ((SectionAccessor) mSection.getSectionAccessor()).getSection();
            for (Control children : section.getChildren()) {
                if (children instanceof Composite && !(children instanceof ToolBar || children instanceof Twistie || children instanceof ImageHyperlink)) {
                    compo = (Composite) children;
                    break;
                }
            }
            List<Control> tabList = arrayToList(compo.getTabList());
            fc = getNextRequiredControl(tabList);
            if (fc != null) {
                if (focussedControl instanceof LookupComposite) {
                    lookup = (LookupComposite) focussedControl;
                    lookup.closePopup();
                }
                return;
            } else {
                continue;
            }
        }
    }
}
Also used : Composite(org.eclipse.swt.widgets.Composite) LookupComposite(aero.minova.rcp.widgets.LookupComposite) ImageHyperlink(org.eclipse.ui.forms.widgets.ImageHyperlink) LookupComposite(aero.minova.rcp.widgets.LookupComposite) SectionAccessor(aero.minova.rcp.rcp.accessor.SectionAccessor) MSection(aero.minova.rcp.model.form.MSection) Section(org.eclipse.ui.forms.widgets.Section) Control(org.eclipse.swt.widgets.Control) DetailAccessor(aero.minova.rcp.rcp.accessor.DetailAccessor) SelectionLayer(org.eclipse.nebula.widgets.nattable.selection.SelectionLayer) TextAssist(org.eclipse.nebula.widgets.opal.textassist.TextAssist) ToolBar(org.eclipse.swt.widgets.ToolBar) NatTable(org.eclipse.nebula.widgets.nattable.NatTable) MSection(aero.minova.rcp.model.form.MSection) Twistie(org.eclipse.ui.forms.widgets.Twistie) Preferences(org.osgi.service.prefs.Preferences) ApplicationPreferences(aero.minova.rcp.preferences.ApplicationPreferences) MField(aero.minova.rcp.model.form.MField)

Aggregations

MField (aero.minova.rcp.model.form.MField)1 MSection (aero.minova.rcp.model.form.MSection)1 ApplicationPreferences (aero.minova.rcp.preferences.ApplicationPreferences)1 DetailAccessor (aero.minova.rcp.rcp.accessor.DetailAccessor)1 SectionAccessor (aero.minova.rcp.rcp.accessor.SectionAccessor)1 LookupComposite (aero.minova.rcp.widgets.LookupComposite)1 NatTable (org.eclipse.nebula.widgets.nattable.NatTable)1 SelectionLayer (org.eclipse.nebula.widgets.nattable.selection.SelectionLayer)1 TextAssist (org.eclipse.nebula.widgets.opal.textassist.TextAssist)1 Composite (org.eclipse.swt.widgets.Composite)1 Control (org.eclipse.swt.widgets.Control)1 ToolBar (org.eclipse.swt.widgets.ToolBar)1 ImageHyperlink (org.eclipse.ui.forms.widgets.ImageHyperlink)1 Section (org.eclipse.ui.forms.widgets.Section)1 Twistie (org.eclipse.ui.forms.widgets.Twistie)1 Preferences (org.osgi.service.prefs.Preferences)1