Uses of Class
com.metsci.glimpse.core.plot.timeline.event.Event
-
-
Uses of Event in com.metsci.glimpse.core.plot.timeline.data
Methods in com.metsci.glimpse.core.plot.timeline.data that return Event Modifier and Type Method Description Event
EventSelection. getEvent()
Methods in com.metsci.glimpse.core.plot.timeline.data with parameters of type Event Modifier and Type Method Description TimeSpan
EventConstraint. applyConstraint(Event event, TimeSpan proposedTimeSpan)
Describes a set of constraints on the start and end times of an event.Constructors in com.metsci.glimpse.core.plot.timeline.data with parameters of type Event Constructor Description EventSelection(Event event, EnumSet<EventSelection.Location> locations)
-
Uses of Event in com.metsci.glimpse.core.plot.timeline.event
Subclasses of Event in com.metsci.glimpse.core.plot.timeline.event Modifier and Type Class Description class
AggregateEvent
When aStackedTimePlot2D
is zoomed out very far, Events can be squashed very close together in pixel space, making them hard to see.Fields in com.metsci.glimpse.core.plot.timeline.event with type parameters of type Event Modifier and Type Field Description List<Event>
EventManager.Row. visibleEvents
Methods in com.metsci.glimpse.core.plot.timeline.event that return Event Modifier and Type Method Description Event
EventPlotInfo. addEvent(Object id, String label, TimeStamp time)
Event
EventPlotInfo. addEvent(Object id, String label, TimeStamp startTime, TimeStamp endTime)
Event
EventPlotInfo. addEvent(String label, TimeStamp time)
Event
EventPlotInfo. addEvent(String label, TimeStamp startTime, TimeStamp endTime)
static Event
Event. createDummyEvent(Event event)
static Event
Event. createDummyEvent(TimeStamp time)
Event
EventManager. getEvent(Object id)
Event
EventPlotInfo. getEvent(Object id)
Event
EventManager. removeEvent(Object id)
Methods in com.metsci.glimpse.core.plot.timeline.event that return types with arguments of type Event Modifier and Type Method Description static Comparator<Event>
Event. getEndTimeComparator()
Set<Event>
EventManager. getEvents()
Set<Event>
EventPlotInfo. getEvents()
Collection<Event>
EventManager.Row. getNearestVisibleEvents(TimeStamp timeStart, TimeStamp timeEnd)
Collection<Event>
EventManager.Row. getOverlappingEvents(Event event)
static Comparator<Event>
Event. getStartTimeComparator()
Iterator<Event>
AggregateEvent. iterator()
EventPlotInfo can automatically create synthetic groups of Events when the timeline is zoomed out far enough that a bunch of Events are crowded into the same space.Iterator<Event>
Event. iterator()
EventPlotInfo can automatically create synthetic groups of Events when the timeline is zoomed out far enough that a bunch of Events are crowded into the same space.Methods in com.metsci.glimpse.core.plot.timeline.event with parameters of type Event Modifier and Type Method Description void
EventManager. addEvent(Event event)
void
EventManager.Row. addEvent(Event event)
void
EventPlotInfo. addEvent(Event event)
static Event
Event. createDummyEvent(Event event)
long
EventIntervalQuadTree. getEndTimeMillis(Event v)
Collection<Event>
EventManager.Row. getOverlappingEvents(Event event)
double
Event. getOverlapTime(Event event)
long
EventIntervalQuadTree. getStartTimeMillis(Event v)
void
EventManager. moveEvent(Event event, TimeStamp newStartTime, TimeStamp newEndTime)
void
Event. paint(GlimpseContext context, EventPainter defaultPainter, Event nextEvent, EventPlotInfo info, int posMin, int posMax)
void
EventManager.Row. removeEvent(Event event)
void
EventPlotInfo. removeEvent(Event event)
void
EventPlotInfo. updateEvent(Event oldEvent, TimeStamp newStartTime, TimeStamp newEndTime)
void
EventPlotInfo. updateEventRow(GlimpseMouseEvent mouseEvent, Event event, int rowIndex)
-
Uses of Event in com.metsci.glimpse.core.plot.timeline.event.listener
Methods in com.metsci.glimpse.core.plot.timeline.event.listener that return types with arguments of type Event Modifier and Type Method Description Set<Event>
EventSelectionHandler. getSelectedEvents()
Methods in com.metsci.glimpse.core.plot.timeline.event.listener with parameters of type Event Modifier and Type Method Description void
EventSelectionHandler. addSelectedEvent(Event event)
void
DragListener. eventUpdated(GlimpseMouseEvent ev, Event event)
void
EventPlotAdapter. eventUpdated(GlimpseMouseEvent e, Event event)
void
EventPlotListener. eventUpdated(GlimpseMouseEvent e, Event event)
Indicates that the provided Event was updated by the user.boolean
EventSelectionHandler. isEventSelected(Event event)
void
EventSelectionHandler. removeSelectedEvent(Event event)
Method parameters in com.metsci.glimpse.core.plot.timeline.event.listener with type arguments of type Event Modifier and Type Method Description void
EventSelectionListener. eventsSelected(Set<Event> selectedEvents, Set<Event> deselectedEvents)
Indicates that the set of selected events has changed.void
EventSelectionHandler. setSelectedEvents(Set<Event> newEvents)
-
Uses of Event in com.metsci.glimpse.core.plot.timeline.event.paint
Methods in com.metsci.glimpse.core.plot.timeline.event.paint that return Event Modifier and Type Method Description Event
EventDrawInfo. getEvent()
Event
EventDrawInfo. getNextEvent()
Methods in com.metsci.glimpse.core.plot.timeline.event.paint with parameters of type Event Modifier and Type Method Description static float[]
DefaultEventPainter. getBackgroundColor(Event event, EventPlotInfo info, boolean isSelected)
static float[]
DefaultEventPainter. getBorderColor(Event event, EventPlotInfo info, boolean isSelected)
static float
DefaultEventPainter. getBorderThickness(Event event, EventPlotInfo info, boolean isSelected)
static int
DefaultEventPainter. getIconSizePerpPixels(Event event, EventPlotInfo info, int sizePerpPixels)
void
DefaultEventPainter. paint(GlimpseContext context, Event event, Event nextEvent, EventPlotInfo info, int posMin, int posMax)
void
EventPainter. paint(GlimpseContext context, Event event, Event nextEvent, EventPlotInfo info, int posMin, int posMax)
Renders the provided Event (potentially displaying its icon, label, time extents, etc...).Constructors in com.metsci.glimpse.core.plot.timeline.event.paint with parameters of type Event Constructor Description EventDrawInfo(Event event, Event nextEvent, int posMin, int posMax)
-