/* * ********************************************************************** * * Copyright (C) 2010 - 2014 * * [Component.java] * JACPFX Project (https://github.com/JacpFX/JacpFX/) * All rights reserved. * * 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 com.trivadis.com.component; import com.trivadis.com.config.BasicConfig; import javafx.event.Event; import javafx.fxml.FXML; import javafx.geometry.HPos; import javafx.geometry.VPos; import javafx.scene.Node; import javafx.scene.layout.HBox; import javafx.scene.layout.Priority; import javafx.scene.layout.Region; import javafx.scene.web.WebEngine; import javafx.scene.web.WebView; import org.jacpfx.api.annotations.Resource; import org.jacpfx.api.annotations.component.DeclarativeView; import org.jacpfx.api.annotations.lifecycle.PostConstruct; import org.jacpfx.api.annotations.lifecycle.PreDestroy; import org.jacpfx.api.message.Message; import org.jacpfx.rcp.component.FXComponent; import org.jacpfx.rcp.componentLayout.FXComponentLayout; import org.jacpfx.rcp.context.Context; import org.jacpfx.rcp.util.FXUtil; import java.util.ResourceBundle; import java.util.logging.Logger; /** * Created by amo on 21.08.14. */ @DeclarativeView(id = BasicConfig.COMPONENT_DEMO3, name = "Demo2", viewLocation = "/fxml/TabComponent.fxml", active = true, resourceBundleLocation = "bundles.languageBundle", localeID = "en_US", initialTargetLayoutId = BasicConfig.TARGET_CONTAINER_TAB3) public class Demo3Component implements FXComponent { private Logger log = Logger.getLogger(Demo3Component.class.getName()); @Resource private Context context; @FXML private HBox tab; @Override /** * The handle method always runs outside the main application thread. You can create new nodes, * execute long running tasks but you are not allowed to manipulate existing nodes here. */ public Node handle(final Message<Event, Object> message) { return null; } @Override /** * The postHandle method runs always in the main application thread. */ public Node postHandle(final Node arg0, final Message<Event, Object> message) { // runs in FX application thread if (!message.messageBodyEquals(FXUtil.MessageUtil.INIT)) { } return null; } @PostConstruct /** * The @PostConstruct annotation labels methods executed when the component switch from inactive to active state * @param arg0 * @param resourceBundle */ public void onPostConstructComponent(final FXComponentLayout arg0, final ResourceBundle resourceBundle) { Browser b = new Browser(); b.prefWidthProperty().bind(tab.prefWidthProperty()); b.prefHeightProperty().bind(tab.prefHeightProperty()); HBox.setHgrow(b, Priority.ALWAYS); tab.getChildren().add(b); this.log.info("run on start of Demo1Component "); } @PreDestroy /** * The @PreDestroy annotations labels methods executed when the component is set to inactive * @param arg0 */ public void onPreDestroyComponent(final FXComponentLayout arg0) { this.log.info("run on tear down of Demo1Component "); } class Browser extends Region { final WebView browser = new WebView(); final WebEngine webEngine = browser.getEngine(); public Browser() { // webEngine.load("http://www.trivadis.com/"); webEngine.load("http://www.maps.google.com/"); // add the web view to the scene getChildren().add(browser); } @Override protected void layoutChildren() { double w = getWidth(); double h = getHeight(); layoutInArea(browser, 0, 0, w, h, 0, HPos.CENTER, VPos.CENTER); } } }