Examples of Timeline


Examples of de.sciss.eisenkraut.timeline.Timeline

      osc        = new OSCRouterWrapper( null, this );
    } else {
      osc        = null;
    }
   
    timeline      = new Timeline( this );
    markerTrack      = new MarkerTrack( this );
    markers        = (MarkerTrail) markerTrack.getTrail();
    markers.copyFromAudioFile( afds[ 0 ])// XXX
    tracks.add( null, markerTrack );
   
View Full Code Here

Examples of javafx.animation.Timeline

    this.settingsSetTimeline = GuiUtil.createShadowColorIndicatorTimeline(
        settingsDS, ATTENTION_COLOR, Color.BLACK, Timeline.INDEFINITE);
    // help view
    final InnerShadow helpTextEffect = new InnerShadow();
    helpTextEffect.setRadius(10d);
    final Timeline helpTextTimeline = GuiUtil.createShadowColorIndicatorTimeline(
        helpTextEffect, ATTENTION_COLOR, Color.BLACK.brighter(),
        HELP_TEXT_COLOR_CHANGE_CYCLE_COUNT);
    helpTextPane = new ScrollPane();
    helpTextPane.getStyleClass().add("text-area-help");
    //helpTextPane.setPrefHeight(40d);
    helpTextPane.setPrefWidth(300d);
    helpTextPane.setEffect(helpTextEffect);
    helpText = new Label(RS.rbLabel(UGateUtil.HELP_TEXT_DEFAULT_KEY));
    helpText.setWrapText(true);
    helpText.setPrefWidth(helpTextPane.getPrefWidth() - 35d);
    helpText.textProperty().addListener(new ChangeListener<String>() {
      @Override
      public void changed(ObservableValue<? extends String> observable, String oldValue,
          String newValue) {
        helpTextTimeline.stop();
        if (newValue != null && newValue.length() > 0 &&
            !newValue.equals(RS.rbLabel(UGateUtil.HELP_TEXT_DEFAULT_KEY))) {
          helpTextTimeline.play();
        }
      }
    });
    helpTextPane.setContent(helpText);
    defaultUserImg = RS.imgView(RS.IMG_LOCK);
View Full Code Here

Examples of javafx.animation.Timeline

     * based upon the center index
     */
    protected void update(final IndexRange excludeInAnimation) {
        // reset the time line and clear the children
        if (timeline!=null) timeline.stop();
        timeline = new Timeline();
        left.getChildren().clear();
        center.getChildren().clear();
        right.getChildren().clear();
        if (items.size() <= 0) {
          return;
View Full Code Here

Examples of javafx.animation.Timeline

    private long seq = 0;

    private FxTimer(java.time.Duration timeout, Runnable action, int cycles) {
        this.timeout = Duration.millis(timeout.toMillis());
        this.timeline = new Timeline();
        this.action = action;

        timeline.setCycleCount(cycles);
    }
View Full Code Here

Examples of javafx.animation.Timeline

    void maximize() {
        animate(this.prefHeight);
    }

    void animate(double toValue){
        Timeline timeline = new Timeline();
        timeline.getKeyFrames().add(
                new KeyFrame(Duration.seconds(1),
                        new KeyValue(getMaxHeightProperty(), toValue)));
        timeline.playFromStart();
    }
View Full Code Here

Examples of javafx.animation.Timeline

    setupAnnimationTab();
    }


  private void setupAnnimationTab() {
    timeline = new Timeline();
    timeline.setAutoReverse(false);
    timeline.currentTimeProperty().addListener(new ChangeListener<Duration>() {
      @Override
      public void changed(ObservableValue<? extends Duration> observable, Duration oldValue, Duration newValue) {
        slider.setValue(newValue.toMillis());
View Full Code Here

Examples of jp.co.nskint.uq.pd.signage.model.TimeLine

     */
    @ActionPath("{tlid}")
    public Navigation view(@Var("tlid") long tlid) {
        putEnteringLog();
        try {
            TimeLine timeline = tlService.get(tlid);
            LayoutInfo layout = tlService.getViewLayout(timeline);
            request.setAttribute("title", timeline.getXmlModel().getName());
            request.setAttribute("layout", layout.layout.getXmlModel());
            request.setAttribute("reloadTime", layout.reloadTime.getTime() - new Date().getTime());
            request.setAttribute("title", "テスト");
            return forward("/view/view.jsp");
        } finally {
View Full Code Here

Examples of jp.co.nskint.uq.pd.signage.model.TimeLine

     *            タイムラインID
     * @return タイムライン情報
     */
    public TimeLine get(long tlid) {
        Transaction tx = Datastore.beginTransaction();
        TimeLine result = this.get(tx, tlid);
        tx.commit();
        return result;
    }
View Full Code Here

Examples of jp.co.nskint.uq.pd.signage.model.TimeLine

     * @param tlid
     *            タイムラインID
     * @return タイムライン情報
     */
    protected TimeLine get(Transaction tx, long tlid) {
        TimeLine result;
        result =
            Datastore.getOrNull(
                tx,
                TimeLineMeta.get(),
                createKey(tlid));
View Full Code Here

Examples of jp.co.nskint.uq.pd.signage.model.TimeLine

        Schedule schedule = cretateSchedule(scheduleId, blockId);

        // タイムラインXMLモデルの作成
        TimeLineXml timelineXml = cretateTimeLineXml(tlid, name, block, schedule);

        TimeLine timeline = new TimeLine();
        timeline.setId(id);
        Date now = new Date();
        timeline.setRegisteredDate(now);
        timeline.setUpdatedDate(now);
        timeline.setXmlModel(timelineXml);
        timeline.getManagerRef().setModel(manager);

        return timeline;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.