Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.jfoenix.controls;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicBoolean;
import javafx.animation.Interpolator;
import javafx.animation.KeyFrame;
import javafx.animation.KeyValue;
import javafx.animation.PauseTransition;
import javafx.animation.Timeline;
import javafx.application.Platform;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.WeakChangeListener;
import javafx.css.PseudoClass;
import javafx.event.Event;
import javafx.event.EventType;
import javafx.geometry.Bounds;
import javafx.scene.Group;
import javafx.scene.Node;
import javafx.scene.layout.Pane;
import javafx.scene.layout.StackPane;
import javafx.util.Duration;
/**
* "Snackbars provide brief messages about app processes at the bottom of the screen"
* (Material Design Guidelines).
*
* To show a snackbar you need to
*
*
Have a {@link Pane} (snackbarContainer) to show the snackbar on top of. Register it in
* {@link #JFXSnackbar(Pane) the JFXSnackbar constructor} or using the
* {@link #registerSnackbarContainer(Pane)} method.
*
Have or create a {@link JFXSnackbar}.
*
*
Having one snackbar where you pass all your {@link JFXSnackbar.SnackbarEvent SnackbarEvents}
* will ensure that the {@link JFXSnackbar#enqueue(SnackbarEvent) enqueue method} works as
* intended.
*
*
*
Have something to show in the snackbar. A {@link JFXSnackbarLayout} is nice and pretty, but
* any arbitrary {@link Node} will do.
*
Create a {@link JFXSnackbar.SnackbarEvent SnackbarEvent} specifying the contents and the
* duration.
*
*
* Finally, with all those things prepared, show your snackbar using
* {@link JFXSnackbar#enqueue(SnackbarEvent) snackbar.enqueue(snackbarEvent);}.
*
* It's most convenient to create functions to do most of this (creating the layout and event) with
* the default settings; that way all you need to do to show a snackbar is specify the message or
* just the message and the duration.
*
* @see The Material Design
* Snackbar
*/
public class JFXSnackbar extends Group
{
private static final String DEFAULT_STYLE_CLASS = "jfx-snackbar";
private Pane snackbarContainer;
private ChangeListener super Number> sizeListener = (o, oldVal, newVal) -> refreshPopup();
private WeakChangeListener super Number> weakSizeListener = new WeakChangeListener<>(sizeListener);
private AtomicBoolean processingQueue = new AtomicBoolean(false);
private ConcurrentLinkedQueue eventQueue = new ConcurrentLinkedQueue<>();
private ConcurrentHashMap.KeySetView