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

scalafx.imaginej.ScalaFX_Layout_Panes_05.scala Maven / Gradle / Ivy

/*
 * Copyright (c) 2011-2013, ScalaFX Project
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *     * Neither the name of the ScalaFX Project nor the
 *       names of its contributors may be used to endorse or promote products
 *       derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE SCALAFX PROJECT OR ITS CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package scalafx.imaginej

//             ________                                __                   ________   __    __
//           /   _____/\                             /  /\                /   _____/\/__/\ /  /\
//          /  /\_____\/  ________     _______      /  / /   ________    /  /\_____\/\  \ /  / /
//         /  /_/___    /   _____/\  /_____   /\   /  / /  /_____   /\  /  /_/__      \  /  / /
//        /______  /\  /  /\_____\/  \____/  / /  /  / /   \____/  / / /   ____/\      \/  / /
//        \_____/ / / /  / /       /  ___   / /  /  / /  /  ___   / / /  /\____\/      /  / /\
//       ______/ / / /  /_/___    /  /__/  / /  /  / /  /  /__/  / / /  / /           /  / /\ \
//     /________/ / /________/\  /________/ /  /__/ /  /________/ / /__/ /           /__/ /  \ \
//     \________\/  \________\/  \________\/   \__\/   \________\/  \__\/            \__\/ \__\/
//
//                                  ScalaFX Programming Library Examples
//

import scalafx.application.JFXApp
import scalafx.application.JFXApp.PrimaryStage
import scalafx.geometry.Insets
import scalafx.geometry.{VPos, Pos}
import scalafx.scene.Scene
import scalafx.scene.control.Button
import scalafx.scene.image.{Image, ImageView}
import scalafx.scene.layout._
import scalafx.scene.paint.Color
import scalafx.scene.shape.Rectangle
import scalafx.scene.text.Font
import scalafx.scene.text.FontWeight
import scalafx.scene.text.Text


/**
 * @author Luc Duponcheel 
 *
 * based upon: Example 1-4 Create a Stack Pane
 *
 * note: no linear gradient and hard coded positioning of stack pane
 *
 * http://docs.oracle.com/javafx/2.0/layout/builtin_layouts.htm
 *
 */

object ScalaFX_Layout_Panes_05 extends JFXApp {
  val currentButton = new Button {
    text = "Current"
    prefWidth = 100
    prefHeight = 20
  }
  val projectedButton = new Button {
    text = "Projected"
    prefWidth = 100
    prefHeight = 20
  }
  val questionText: Text = new Text {
    fill = Color.WHITE
    stroke = Color.DARKBLUE
    font = Font.font("Amble Cn", FontWeight.BOLD, 18)
    text = " ? "
  }
  val questionRectangle = new Rectangle {
    fill = Color.LIGHTBLUE
    stroke = Color.WHITE
    arcHeight = 3.5
    arcWidth = 3.5
    width = questionText.boundsInLocal.getValue.getWidth + 10
    height = questionText.boundsInLocal.getValue.getHeight + 10
  }
  val stackPane = new StackPane {
    alignment = Pos.CENTER
    content = List(questionRectangle, questionText)
  }
  val hBox = new HBox {
    spacing = 10
    padding = Insets(15, 12, 15, 12)
    style = "-fx-background-color: #336699"
    content = List(
      currentButton,
      projectedButton,
      new Rectangle {
        width = 200
      }, // hack
      stackPane
    )
  }
  val data = List(
    new Text {
      font = Font.font("Amble CN", FontWeight.BOLD, 14)
      text = "Data"
    },
    new Text {
      text = "  Sales"
    },
    new Text {
      text = "  Marketing"
    },
    new Text {
      text = "  Distribution"
    },
    new Text {
      text = "  Costs"
    }
  )
  val vBox = new VBox {
    spacing = 10
    padding = Insets(10, 10, 10, 10)
    content = data
  }

  val salesText = new Text {
    font = Font.font("Tahoma", FontWeight.BOLD, 20)
    text = "Sales:"
  }

  val yearText = new Text {
    font = Font.font("Tahoma", FontWeight.BOLD, 20)
    text = "Current Year"
  }

  val iconImageView = new ImageView {
    image = new Image(this, "images/icon.png")
  }

  val oldAndNewText = new Text {
    text = "Old and New"
  }

  val oldText = new Text {
    text = "Old\n20%"
  }

  val newText = new Text {
    text = "New\n80%"
  }

  val newImageView = new ImageView {
    image = new Image(this, "images/new.png")
  }

  val gridPane = new GridPane {
    hgap = 10
    vgap = 10
    padding = Insets(0, 0, 0, 10)
  }

  gridPane.add(iconImageView, 0, 0, 1, 2)
  gridPane.add(salesText, 1, 0)
  gridPane.add(yearText, 2, 0)
  gridPane.add(oldAndNewText, 1, 1, 2, 1)
  GridPane.setValignment(oldText, VPos.BOTTOM)
  gridPane.add(oldText, 0, 2)
  gridPane.add(newImageView, 1, 2, 2, 1)
  GridPane.setValignment(newText, VPos.TOP)
  gridPane.add(newText, 3, 2)


  stage = new PrimaryStage {
    title = "ScalaFX Layout Panes 05"
    scene = new Scene {
      content = new BorderPane {
        top = hBox
        left = vBox
        center = gridPane
      }
    }
  }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy