Package com.google.speedtracer.client.visualizations.model

Source Code of com.google.speedtracer.client.visualizations.model.SluggishnessVisualization$Resources

/*
* Copyright 2008 Google Inc.
*
* 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.google.speedtracer.client.visualizations.model;

import com.google.gwt.topspin.ui.client.Container;
import com.google.speedtracer.client.model.UiEvent;
import com.google.speedtracer.client.model.Visualization;
import com.google.speedtracer.client.timeline.Constants;
import com.google.speedtracer.client.timeline.GraphUiProps;
import com.google.speedtracer.client.view.MainTimeLine;
import com.google.speedtracer.client.visualizations.view.SluggishnessDetailView;

/**
* Monitors Sluggishness.
*/
public class SluggishnessVisualization extends
    Visualization<SluggishnessDetailView, SluggishnessModel> implements
    SluggishnessModel.EventWithinWindowListener,
    SluggishnessModel.EventRefreshListener {

  /**
   * Resources for children of {@link SluggishnessVisualization}.
   */
  public interface Resources extends SluggishnessDetailView.Resources {
  }

  public static final String TITLE = "Sluggishness";

  private static final String SUBTITLE = "events";

  /**
   * Constructor for the Graph UI properties that govern the graph's look and
   * feel.
   */
  private static GraphUiProps createGraphUiProps() {
    return new GraphUiProps(Constants.SLUGGISHNESS_GRAPH_COLOR,
        Constants.GRAPH_STROKE_COLOR,
        SluggishnessModel.defaultSluggishnessYScale);
  }

  private final SluggishnessVisualization.Resources resources;

  private final MainTimeLine timeline;

  /**
   * Constructor.
   *
   * @param timeline The parent {@link MainTimeLine} for this Visualization.
   * @param sluggishnessModel the backing {@link VisualizationModel} for this
   *          Visualization.
   */
  public SluggishnessVisualization(MainTimeLine timeline,
      SluggishnessModel sluggishnessModel, Container detailsContainer,
      SluggishnessVisualization.Resources resources) {
    super(TITLE, SUBTITLE, sluggishnessModel, createGraphUiProps());
    this.resources = resources;
    this.timeline = timeline;

    setDetailsView(createDetailsView(detailsContainer, timeline));
    setModel(sluggishnessModel);
  }

  /**
   * Required implementation of the constructor for the DetailsView.
   */
  @Override
  public SluggishnessDetailView createDetailsView(Container container,
      MainTimeLine timeLine) {
    return new SluggishnessDetailView(container, this,
        getModel().getDataDispatcher().getUiEventDispatcher(), resources);
  }

  public MainTimeLine getTimeline() {
    return timeline;
  }

  public void onEventRefresh(UiEvent event) {
    this.getDetailsView().refreshRecord(event);
  }

  public void onEventWithinWindow(UiEvent event) {
    SluggishnessDetailView details = getDetailsView();
    if (details != null) {
      details.shortCircuitAddEvent(event);
    }
  }

  @Override
  public void setModel(VisualizationModel model) {
    super.setModel(model);
    SluggishnessModel sModel = (SluggishnessModel) model;
    sModel.setRecordRefreshListener(this);
    sModel.setEventWithinWindowListener(this);
  }
}
TOP

Related Classes of com.google.speedtracer.client.visualizations.model.SluggishnessVisualization$Resources

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.