All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.micromata.mgc.javafx.launcher.gui.AboutDialogController Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
//
// Copyright (C) 2010-2016 Micromata GmbH
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//  http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

package de.micromata.mgc.javafx.launcher.gui;

import java.io.IOException;
import java.io.InputStream;

import java.nio.charset.StandardCharsets;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;

import de.micromata.genome.util.validation.ValMessage;
import de.micromata.mgc.application.MgcApplication;
import de.micromata.mgc.application.MgcApplicationInfo;
import de.micromata.mgc.javafx.SystemService;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Hyperlink;
import javafx.scene.control.TextArea;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.Pane;
import javafx.scene.text.Font;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
import javafx.scene.text.TextFlow;

/**
 * 
 * @author Roger Rene Kommer ([email protected])
 *
 */
public class AboutDialogController extends AbstractModelController>
{
  @FXML
  private Pane aboutLogoPanel;
  @FXML
  private Pane licensePanel;
  @FXML
  private Pane buttonPanel;
  @FXML
  private ImageView logo;
  @FXML
  private Pane appInfo;
  @FXML
  private Pane appDetails;
  @FXML
  private Button okButton;
  @FXML
  private TextArea licenceTextArea;

  @Override
  public void initializeWithModel()
  {
    MgcApplicationInfo ai = model.getApplicationInfo();

    AnchorPane.setTopAnchor(aboutLogoPanel, 2.0);
    AnchorPane.setRightAnchor(aboutLogoPanel, 2.0);
    AnchorPane.setLeftAnchor(aboutLogoPanel, 2.0);
    AnchorPane.setTopAnchor(aboutLogoPanel, 2.0);
    AnchorPane.setRightAnchor(licensePanel, 2.0);
    AnchorPane.setLeftAnchor(licensePanel, 2.0);
    AnchorPane.setRightAnchor(licenceTextArea, 5.0);
    AnchorPane.setLeftAnchor(licenceTextArea, 2.0);
    //    AnchorPane.setTopAnchor(licensePanel, 100.0);
    //    AnchorPane.setBottomAnchor(configurationTabs, 5.0);
    AnchorPane.setRightAnchor(buttonPanel, 2.0);
    AnchorPane.setLeftAnchor(buttonPanel, 2.0);
    AnchorPane.setBottomAnchor(buttonPanel, 2.0);

    okButton.setOnAction(event -> getStage().close());

    String name = ai.getName() + " " + ai.getVersion();
    Text text1 = new Text(name);
    text1.setFont(Font.font("Verdana", FontWeight.BOLD, 20));
    Text text2 = new Text("\n\n" + ai.getCopyright() + "\n");
    TextFlow apptext = new TextFlow(text1, text2);
    appInfo.getChildren().add(apptext);

    if (ai.getLogoLargePath() != null) {
      logo.setImage(new Image(this.getClass().getResource(ai.getLogoLargePath()).toString()));
    }

    String sdetailText = ai.getDetailInfo();
    if (StringUtils.isNotBlank(ai.getLicense()) == true) {
      sdetailText += "\n\nLicense: " + ai.getLicense();
    }
    TextFlow detailText = new TextFlow();
    detailText.getChildren().add(new Text(sdetailText));

    if (StringUtils.isNotBlank(ai.getHomeUrl()) == true) {
      detailText.getChildren().add(new Text("\n\nHomepage: "));
      Hyperlink hlink = new Hyperlink(ai.getHomeUrl());
      hlink.setOnAction(event -> SystemService.get().openUrlInBrowser(ai.getHomeUrl()));
      detailText.getChildren().add(hlink);
    }
    appDetails.getChildren().add(detailText);
    initLicenseText();
  }

  private void initLicenseText()
  {
    try (InputStream is = getClass().getClassLoader().getResourceAsStream("AppLicense.txt")) {
      if (is == null) {
        licenceTextArea.setMaxHeight(0.0);
        licenceTextArea.setVisible(false);
        return;
      }
      String text = IOUtils.toString(is, StandardCharsets.UTF_8);
      licenceTextArea.setText(text);
    } catch (IOException ex) {

    }

  }

  @Override
  public void fromModel()
  {

  }

  @Override
  public void toModel()
  {

  }

  @Override
  public void addToFeedback(ValMessage msg)
  {

  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy