Class AddPopup

java.lang.Object
javafx.stage.Window
javafx.stage.PopupWindow
javafx.stage.Popup
no.ntnu.idatt1002.demo.view.components.AddPopup
All Implemented Interfaces:
javafx.event.EventTarget

public class AddPopup extends javafx.stage.Popup
A popup for adding items to the inventory. TODO: Make this class be able to add recipes. Maybe make a superclas?
  • Property Summary

    Properties inherited from class javafx.stage.PopupWindow

    anchorLocation, anchorX, anchorY, autoFix, autoHide, consumeAutoHidingEvents, hideOnEscape, onAutoHide, ownerNode, ownerWindow

    Properties inherited from class javafx.stage.Window

    eventDispatcher, focused, forceIntegerRenderScale, height, onCloseRequest, onHidden, onHiding, onShowing, onShown, opacity, outputScaleX, outputScaleY, renderScaleX, renderScaleY, scene, showing, width, x, y
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static interface 
    A callback for when the form is submitted.

    Nested classes/interfaces inherited from class javafx.stage.PopupWindow

    javafx.stage.PopupWindow.AnchorLocation
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private ArrayList<Field>
     
     
    private javafx.scene.text.Text
     
    private String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructor for the AddPopup.
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> Field<T>
    addField(Field<T> field)
    Adds a new field to the popup.
    private void
    Adds an item to the inventory.
    private void
     
    Set the callback for when the form is submitted.
    void
    setSpecialPrompt(javafx.scene.text.Text text, Consumer<Void> onAction)
    Set a special prompt at the bottom of the popup.

    Methods inherited from class javafx.stage.Popup

    getContent

    Methods inherited from class javafx.stage.PopupWindow

    anchorLocationProperty, anchorXProperty, anchorYProperty, autoFixProperty, autoHideProperty, consumeAutoHidingEventsProperty, getAnchorLocation, getAnchorX, getAnchorY, getConsumeAutoHidingEvents, getOnAutoHide, getOwnerNode, getOwnerWindow, hide, hideOnEscapeProperty, isAutoFix, isAutoHide, isHideOnEscape, onAutoHideProperty, ownerNodeProperty, ownerWindowProperty, setAnchorLocation, setAnchorX, setAnchorY, setAutoFix, setAutoHide, setConsumeAutoHidingEvents, setHideOnEscape, setOnAutoHide, setScene, show, show, show

    Methods inherited from class javafx.stage.Window

    addEventFilter, addEventHandler, buildEventDispatchChain, centerOnScreen, eventDispatcherProperty, fireEvent, focusedProperty, forceIntegerRenderScaleProperty, getEventDispatcher, getHeight, getOnCloseRequest, getOnHidden, getOnHiding, getOnShowing, getOnShown, getOpacity, getOutputScaleX, getOutputScaleY, getProperties, getRenderScaleX, getRenderScaleY, getScene, getUserData, getWidth, getWindows, getX, getY, hasProperties, heightProperty, isFocused, isForceIntegerRenderScale, isShowing, onCloseRequestProperty, onHiddenProperty, onHidingProperty, onShowingProperty, onShownProperty, opacityProperty, outputScaleXProperty, outputScaleYProperty, removeEventFilter, removeEventHandler, renderScaleXProperty, renderScaleYProperty, requestFocus, sceneProperty, setEventDispatcher, setEventHandler, setForceIntegerRenderScale, setHeight, setOnCloseRequest, setOnHidden, setOnHiding, setOnShowing, setOnShown, setOpacity, setRenderScaleX, setRenderScaleY, setUserData, setWidth, setX, setY, show, showingProperty, sizeToScene, widthProperty, xProperty, yProperty

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • AddPopup

      public AddPopup(String type)
      Constructor for the AddPopup.
  • Method Details

    • render

      private void render()
    • addField

      public <T> Field<T> addField(Field<T> field)
      Adds a new field to the popup.
      Type Parameters:
      T - the type of the field
      Parameters:
      field - the field to add
      Returns:
      the field
    • addItem

      private void addItem()
      Adds an item to the inventory.
    • setOnAdd

      public AddPopup setOnAdd(AddPopup.OnAdd cb)
      Set the callback for when the form is submitted.
      Parameters:
      cb - the callback
      Returns:
      this input field
    • setSpecialPrompt

      public void setSpecialPrompt(javafx.scene.text.Text text, Consumer<Void> onAction)
      Set a special prompt at the bottom of the popup.

      This is useful for displaying a clickable text that performs an action. Closes the popup when clicked.

      Parameters:
      text - the text to display
      onAction - the action to perform when the text is clicked