Package de.chris_soft.fyllgen.menu.navigate

Source Code of de.chris_soft.fyllgen.menu.navigate.GotoChild

/**
* FyLLGen - A Java based tool for collecting and distributing family data
*
* Copyright (C) 2007-2011 Christian Packenius
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package de.chris_soft.fyllgen.menu.navigate;

import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;

import de.chris_soft.fyllgen.GUI;
import de.chris_soft.fyllgen.data.Family;
import de.chris_soft.fyllgen.data.Person;
import de.chris_soft.fyllgen.widget.dialog.PersonChoiceShell;

/**
* Wechselt zu einem bestimmten Kind der aktuellen Person.
* @author Christian Packenius, Juli 2008.
*/
public class GotoChild implements Listener {
  /**
   * Zu einem Kind wechseln.
   * @see org.eclipse.swt.widgets.Listener#handleEvent(org.eclipse.swt.widgets.Event)
   */
  public void handleEvent(Event event) {
    Person currentPerson = Family.instance.getCurrentPerson();
    Person[] persons = currentPerson.getChildren();
    if (persons.length == 1) {
      Family.instance.setCurrentPerson(persons[0], 1);
    }
    else if (persons.length > 1) {
      PersonChoiceShell pcs = new PersonChoiceShell(GUI.instance.shell, "Zum Kind wechseln", "Zum Kind springen", null,
          1, true, null, false);
      for (Person person : persons) {
        pcs.addPerson(person, null);
      }
      pcs.open();

      if (pcs.personChoice != null) {
        // Es wurde eine vorhandene Person angew�hlt.
        Family.instance.setCurrentPerson(pcs.personChoice, 1);
      }
    }
  }
}
TOP

Related Classes of de.chris_soft.fyllgen.menu.navigate.GotoChild

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.