Klasse GraphicsBase<R extends Row<?,?,?>>
java.lang.Object
javafx.scene.Node
javafx.scene.Parent
javafx.scene.layout.Region
javafx.scene.control.Control
com.flexganttfx.view.util.FlexGanttFXControl
com.flexganttfx.view.graphics.GraphicsBase<R>
- Typparameter:
R- the type of the rows shown by the graphics
- Alle implementierten Schnittstellen:
Styleable,EventTarget,Skinnable
- Bekannte direkte Unterklassen:
ListViewGraphics,SingleRowGraphics,SplitPaneGraphics,VBoxGraphics
The graphics view control is responsible for the rendering of activities and
system layers, the editing of activities, the event notifications, the hit
detection, system layer management, and for context menu support.
Background layers are drawn "behind" activities, foreground layers are drawn "in front of" activities. Each one of these lists are already pre-populated but can be changed by the application. For more information on the available system layers, please refer to their individual documentation.
System layers can be turned on and off directly via the API of
Rendering
The graphics view uses the canvas API of JavaFX. This is due to the complex nature of a Gantt chart and due to the large data volumes often observed in Gantt charts. Directly rendering large quantities of activities into a bitmap is much faster than constantly updating the scene graph and reapplying CSS styling. FlexGanttFX implements a pluggable renderer architecture where renderer instances can be mapped to activity types, very similar to the way Swing was doing it. The following code is an example of how to register a custom renderer for a given "Flight" activity type. Please note that the graphics view is capable of displaying activities in three different layouts, hence the layout type must also be passed to the method.
setActivityRenderer(Flight.class, GanttLayout.class, new FlightRenderer());
System Layers
Activities are not the only thing that need to be rendered. There are also the current time ("now"), grid lines, inner lines, agenda / chart lines, etc... All of these things are rendered by so-called system layers (seeSystemLayer). The graphics view manages two lists of these layers.
One list for background layers (getBackgroundSystemLayers()) and one
list for foreground layers (getForegroundSystemLayers()).
Background layers are drawn "behind" activities, foreground layers are drawn "in front of" activities. Each one of these lists are already pre-populated but can be changed by the application. For more information on the available system layers, please refer to their individual documentation.
System layers can be turned on and off directly via the API of
GraphicsBase. There is a boolean property for each layer that ships
with FlexGanttFX. The value of these properties can be set by calling the
methods that follow the pattern setShowXYZLayer. System layers
that are controlled like this will appear and disappear with a fade in / fade
out animation, while calling SystemLayer.setVisible(boolean) directly
will be without any animation.
Editing Customization
Two different callbacks are used to control the editing behaviour of activities. The first maps a mouse event / mouse location to anGraphicsBase.EditMode and can be registered by calling
setEditModeCallback(Class, Class, Callback). The second callback is
used to determine whether a given editing mode / operation can be applied to
an activity at all. This callback is registered by calling
setActivityEditingCallback(Class, Callback). Most applications will
only need to work with the second callback and keep the defaults for the edit
mode locations (for example: right edge used to change end time, left edge
used to change start time).
Notifications / Events
Events of typeActivityEvent are sent whenever the user performs a
change inside the graphics view. Applications that want to receive these
events can either call any one of the setOnActivityXYZEvent()
methods or by adding an event handler directly via
addEventHandler(ActionEvent.ACTIVITY_XYZ, ...). Events are fired
while the change is being performed and once it has been completed. For this
the ActivityEvent class lists event types with the two different
endings CHANGING and CHANGED.
Filtering
The data displayed by the graphics control can be filtered in two ways: first by showing / hiding rows, second by showing / hiding activities. Row filtering is done by the parent GanttChart controls while activity filtering is done by the graphics control via an activity filter predicate:
setActivityFilter(Predicate<Activity> filter);
Finding / Lookup / Hitpoint Detection
The graphics view provides support for finding out information about a given position. Activities can be found by callinggetActivityBoundsAt(double, double) or
getActivityRefAt(double, double). The time at an x-coordinate can be
looked up by calling getTimeAt(double). The opposite direction is
also available: a location can be found for a given time by calling
getLocation(Instant).
Context Menu
Context menus can be set on any control in JavaFX but due to the complexitiy of the graphics view it does make sense to provide additional built-in support. By callingsetContextMenuCallback(Callback) a context menu
specific callback can be registered with the graphics control. This callback
will be invoked when the user triggers the context menu. A callback parameter
object (see GraphicsBase.ContextMenuParameter) will be passed to the callback
already populated with the most important values that might be relevant for
building a context menu.- Seit:
- 1.0
-
Verschachtelte Klassen - Übersicht
Verschachtelte KlassenModifizierer und TypKlasseBeschreibungstatic final classGraphicsBase.ContextMenuParameter<R extends Row<?,?, ?>> A callback parameter class used for displaying a context menu.static enumAn enumerator used to define how to visuzalize the dragged activity during a drag and drop operation.static classThe drag and drop info class aggregates the various pieces of information that the application might be interested in while a drag and drop operation is in progress.static final classA callback parameter object used for determining if the proposedGraphicsBase.EditModeis currently allowed or not.static enumAn enumeration of possible editing states that the graphics view can be in.static final classA callback parameter object used by the edit mode callback that provides information about the context for which the edit mode will be determined.static enumAn enumerator used to control the selection behaviour of the lasso.static final classGraphicsBase.RowControlsParameter<R extends Row<?,?, ?>> A callback parameter object used to provide context for the row controls factory.static enumAn enumerator used to define how many rows can show their row editors at the same time.static final classGraphicsBase.RowEditorParameter<R extends Row<?,?, ?>> A callback parameter object used to provide context for the row editor factory.static classGraphicsBase.RowHeader<R extends Row<?,?, ?>> A row header is a node that can be displayed to the left of each row inside the graphics area.static enumAn enumerator used to control the selection behaviour of the graphics view. -
Eigenschaftsübersicht
EigenschaftenTypEigenschaftBeschreibungfinal ObjectProperty<Predicate<Activity>> A property used to store a filter function, which determines if an activity will be rendered or not.final BooleanPropertyfinal BooleanPropertyA property used to enable / disable the autogrid mode.final BooleanPropertyControls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally).final ReadOnlyBooleanPropertyA property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes.final DoublePropertyA canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.A property used to store a callback which is used for creating a context menu.final BooleanPropertyA property used to enable / disable the debug mode.A property used to store the current drag and drop information.final ObjectProperty<Callback<ActivityRef<?>, Image>> A property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished.final ReadOnlyObjectProperty<ActivityRef<?>> A property used to store the currently active editing mode, e.g.final BooleanPropertyControls whether the view allows the user to interactively resize the row / change the row height.final DoublePropertyfinal BooleanPropertyfinal DoublePropertyA property used to store a fixed cell size for controls that are based on the virtual flow control.final ReadOnlyBooleanPropertyA convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.final StyleableObjectProperty<Paint> final StyleableObjectProperty<Paint> final StyleableObjectProperty<Paint> final LongPropertyA property used to store the delay between two "blinks" of highlighted rows or activities.final ReadOnlyBooleanPropertyA read-only property used to control the highlighting effect.final BooleanPropertyDetermines whether the user can perform a horizontal drag with a mouse drag.final ReadOnlyObjectProperty<ActivityRef<?>> final ReadOnlyObjectProperty<Layout> final ReadOnlyObjectProperty<R> final StyleableObjectProperty<Paint> final ReadOnlyBooleanPropertyA boolean property used to indicate whether the lasso selection tool is currently in use or not.final BooleanPropertyA property used to control whether the user can use the lasso for selecting multiple activities at once.A property used to store the currently used lasso selection behaviour.final BooleanPropertyA boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.final IntegerPropertyA property used to store the number of grid levels that the user wants to see in the graphics view.final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<Node> final ReadOnlyObjectProperty<ActivityRef<?>> final ObjectProperty<Predicate<R>> A predicate used to filter the rows.final ObjectProperty<Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>>> A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.final DoublePropertySpecifies the width of the so-called "row headers".final ListProperty<R> Returns the property used to store the list of rows.final BooleanPropertyReturns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).A property used to store the currently supported selection mode.final BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyA property used to control wether a horizontal cursor line will be shown by the graphics view.final BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyControls whether theLinksCanvaswill be visible and links will be drawn.final BooleanPropertyA property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).final BooleanPropertyfinal BooleanPropertyDetermines if the row headers will be shown to the user or not.final BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyA property used to control whether a vertical cursor line will be shown by the graphics view.final BooleanPropertyfinal BooleanPropertyfinal ObjectProperty<Timeline> A property used to store a reference to the timeline control above the graphics.final StyleableObjectProperty<Paint> final ObjectProperty<VirtualGrid<?>> final StyleableObjectProperty<Paint> Von Klasse geerbte Eigenschaften javafx.scene.control.Control
contextMenu, skin, tooltipVon Klasse geerbte Eigenschaften javafx.scene.layout.Region
background, border, cacheShape, centerShape, height, insets, maxHeight, maxWidth, minHeight, minWidth, opaqueInsets, padding, prefHeight, prefWidth, scaleShape, shape, snapToPixel, widthVon Klasse geerbte Eigenschaften javafx.scene.Parent
needsLayoutVon Klasse geerbte Eigenschaften javafx.scene.Node
accessibleHelp, accessibleRoleDescription, accessibleRole, accessibleText, blendMode, boundsInLocal, boundsInParent, cacheHint, cache, clip, cursor, depthTest, disabled, disable, effectiveNodeOrientation, effect, eventDispatcher, focused, focusTraversable, focusVisible, focusWithin, hover, id, inputMethodRequests, layoutBounds, layoutX, layoutY, localToParentTransform, localToSceneTransform, managed, mouseTransparent, nodeOrientation, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onInputMethodTextChanged, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragEntered, onMouseDragExited, onMouseDragged, onMouseDragOver, onMouseDragReleased, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onRotate, onRotationFinished, onRotationStarted, onScrollFinished, onScroll, onScrollStarted, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, onZoomFinished, onZoom, onZoomStarted, opacity, parent, pickOnBounds, pressed, rotate, rotationAxis, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, translateZ, viewOrder, visible -
Feldübersicht
Von Klasse geerbte Felder javafx.scene.layout.Region
USE_COMPUTED_SIZE, USE_PREF_SIZEVon Klasse geerbte Felder javafx.scene.Node
BASELINE_OFFSET_SAME_AS_HEIGHT -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs a new graphics view and initializes the following: Virtual grid settings (1, 5, 10, 15, 30, 60 Minutes) Activity renderers for several of the default model classes. Edit mode callbacks for several of the default model classes. Activity editing callbacks. Background and foreground layers. Calendars (e. g. weekend calendar). -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfinal ObjectProperty<Predicate<Activity>> A property used to store a filter function, which determines if an activity will be rendered or not.final BooleanPropertyfinal BooleanPropertyA property used to enable / disable the autogrid mode.final BooleanPropertyControls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally).final ReadOnlyBooleanPropertyA property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes.final DoublePropertyA canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.A property used to store a callback which is used for creating a context menu.final BooleanPropertyA property used to enable / disable the debug mode.A property used to store the current drag and drop information.final ObjectProperty<Callback<ActivityRef<?>, Image>> voidPerforms a redraw of the displayed links and logs the given reason.A property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished.final ReadOnlyObjectProperty<ActivityRef<?>> A property used to store the currently active editing mode, e.g.final BooleanPropertyControls whether the view allows the user to interactively resize the row / change the row height.final DoublePropertyfinal BooleanPropertyfinal DoublePropertyA property used to store a fixed cell size for controls that are based on the virtual flow control.final ActivityBoundsgetActivityBoundsAt(double x, double y) Finds the activity bounds at the given location.final <A extends Activity>
Callback<GraphicsBase.EditingCallbackParameter, Boolean> getActivityEditingCallback(Class<A> activityType) Returns the value ofactivityFilterProperty().final ActivityRef<?> getActivityRefAt(double x, double y) Finds the activity reference at the given location.final <A extends Activity>
ActivityRenderer<? extends A> getActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType) final List<ActivityBounds> getAllActivityBoundsAt(double x, double y) Returns the bounds of all activities found at the given location.final List<ActivityRef<?>> getAllActivityRefsAt(double x, double y) Returns the references to all activities found at the given location.final List<ActivityRenderer<?>> Returns a list of all currently registered activity renderers.final List<CalendarActivity> getAllCalendarActivitiesAt(double x, double y) Finds all calendar activities at the given location.final <SL extends SystemLayer<R>>
SLgetBackgroundSystemLayer(Class<SL> layerType) final ObservableList<SystemLayer<R>> final ObservableList<Calendar<? extends CalendarActivity>> Returns the list of calendars that are registered with the graphics view.final doubleRuft den Wert dercanvasBuffer-Eigenschaft ab.static List<CssMetaData<? extends Styleable, ?>> Returns the value ofcontextMenuCallbackProperty().final List<CssMetaData<? extends Styleable, ?>> Ruft den Wert derdragAndDropFeedback-Eigenschaft ab.Returns the value ofdragAndDropInfoProperty().final Callback<ActivityRef<?>, Image> Ruft den Wert derdragImageProvider-Eigenschaft ab.Returns the value ofdropLayerProviderProperty().final InstantCalculates and returns the earliest time used by all rows in the model.final ActivityRef<?> Ruft den Wert dereditedActivity-Eigenschaft ab.final GraphicsBase.EditModeReturns the value ofeditModeProperty().getEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType) final doubleRuft den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft ab.final doubleReturns the value offixedCellSizeProperty().final <SL extends SystemLayer<R>>
SLgetForegroundSystemLayer(Class<SL> layerType) final ObservableList<SystemLayer<R>> final PaintRuft den Wert dergridLineColor1-Eigenschaft ab.final PaintRuft den Wert dergridLineColor2-Eigenschaft ab.final PaintRuft den Wert dergridLineColor3-Eigenschaft ab.final longReturns the value ofhighlightDelayProperty().final ObservableSet<ActivityRef<?>> Returns a set that is used to store the currently highighted activities.final ObservableSet<Row<?, ?, ?>> Returns a set that is used to store the currently highlighted rows.final ActivityRef<?> Ruft den Wert derhoverActivity-Eigenschaft ab.final LayoutRuft den Wert derhoverLayout-Eigenschaft ab.final RRuft den Wert derhoverRow-Eigenschaft ab.final PaintRuft den Wert derinnerLinesColor-Eigenschaft ab.Returns the value of thelassoSelectionBehaviourProperty().final InstantCalculates and returns the latest time used by all rows in the model.final ObservableList<Layer> Returns the list that is used to store all layers of the model.final LayoutgetLayoutAt(double y) Finds the layout that is being used at the given y-coordinate.final <AL extends ActivityLink<?>>
LinkRenderer<AL> getLinkRenderer(Class<AL> clazz) Returns a renderer for the given activity link type.final IntervalTree<ActivityLink> getLinks()Returns the interval tree that is used to store all activity links of the model.final LocalTimegetLocalTimeAt(double y) Returns the local time at the given location.final doublegetLocation(Instant time) Returns the x coordinate for the given time.final intReturns the value ofmaxGridLevelProperty().final EventHandler<ActivityEvent> Ruft den Wert deronActivityChange-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartHighValueChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartHighValueChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartLowValueChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartLowValueChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartValueChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartValueChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartValueChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDeleted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragDone-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityEndTimeChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityEndTimeChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityEndTimeChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityHorizontalDragFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityHorizontalDragOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityHorizontalDragStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityPercentageChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityPercentageChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityPercentageChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityStartTimeChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityStartTimeChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityStartTimeChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragDone-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragStarted-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelection-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelectionFinished-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelectionOngoing-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelectionStarted-Eigenschaft ab.final NodeRuft den Wert derplaceholder-Eigenschaft ab.final ActivityRef<?> Ruft den Wert derpressedActivity-Eigenschaft ab.final RgetRowAt(double y) Finds the row at the given y-coordinate.final Callback<GraphicsBase.RowControlsParameter<R>, Node> Ruft den Wert derrowControlsFactory-Eigenschaft ab.getRowDragAndDropCallback(Class<? extends Row> rowType) Returns a callback that will be invoked when the user drags an activity over a row of the given type.Ruft den Wert derrowEditingMode-Eigenschaft ab.final Callback<GraphicsBase.RowEditorParameter<R>, Node> Ruft den Wert derrowEditorFactory-Eigenschaft ab.final PredicateReturns the value ofrowFilterProperty().final Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>> Returns the value ofrowHeaderFactoryProperty().final doubleRuft den Wert derrowHeadersWidth-Eigenschaft ab.final ObservableList<R> getRows()Returns the list that is used to store all rows of the model.final ObservableList<R> final ObservableList<ActivityRef<?>> Returns the list of currently selected activities.Returns the value ofselectionModeProperty().final <SL extends SystemLayer<R>>
SLgetSystemLayer(Class<SL> layerType) final InstantgetTimeAt(double location) Returns the time at the given location.final TimelineReturns the value oftimelineProperty().final PaintRuft den Wert dertimeNowColor-Eigenschaft ab.final VirtualGrid<?> Ruft den Wert dervirtualGrid-Eigenschaft ab.final ObservableList<VirtualGrid<?>> final PaintRuft den Wert derweekendColor-Eigenschaft ab.final ReadOnlyBooleanPropertyA convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.final StyleableObjectProperty<Paint> final StyleableObjectProperty<Paint> final StyleableObjectProperty<Paint> final LongPropertyA property used to store the delay between two "blinks" of highlighted rows or activities.final ReadOnlyBooleanPropertyA read-only property used to control the highlighting effect.final BooleanPropertyDetermines whether the user can perform a horizontal drag with a mouse drag.final ReadOnlyObjectProperty<ActivityRef<?>> final ReadOnlyObjectProperty<Layout> final ReadOnlyObjectProperty<R> final StyleableObjectProperty<Paint> final booleanRuft den Wert deranimateRowEditor-Eigenschaft ab.final booleanReturns the value ofautoGridEnabledProperty().final booleanReturns the value ofautoMarkedTimeIntervalProperty().final booleanReturns the value ofautomaticRedrawProperty().final booleanReturns the value ofdebugModeProperty().final booleanRuft den Wert derenableRowResizing-Eigenschaft ab.final booleanRuft den Wert derfadeInOutVisibilityChanges-Eigenschaft ab.final booleanReturns the value ofgridEnabledProperty().final booleanReturns the value ofhighlightedProperty().final booleanReturns the value ofhorizontalDragEnabledProperty().final booleanReturns the value oflassoActiveProperty().final booleanReturns the value oflassoEnabledProperty().final booleanReturns the value oflassoSnapsToGridProperty().final booleanReturns the value ofsafeRenderingProperty().final booleanRuft den Wert dershowAgendaLinesLayer-Eigenschaft ab.final booleanRuft den Wert dershowCalendarLayer-Eigenschaft ab.final booleanRuft den Wert dershowChartLinesLayer-Eigenschaft ab.final booleanRuft den Wert dershowDSTLineLayer-Eigenschaft ab.final booleanRuft den Wert dershowGridLineLayer-Eigenschaft ab.final booleanReturns the value ofshowHorizontalCursorProperty().final booleanRuft den Wert dershowHoverTimeIntervalLayer-Eigenschaft ab.final booleanRuft den Wert dershowInnerLinesLayer-Eigenschaft ab.final booleanRuft den Wert dershowLayoutLayer-Eigenschaft ab.final booleanRuft den Wert dershowLinks-Eigenschaft ab.final booleanReturns the value ofshowMarkedTimeIntervalProperty().final booleanRuft den Wert dershowNowLineLayer-Eigenschaft ab.final booleanRuft den Wert dershowRowHeaders-Eigenschaft ab.final booleanRuft den Wert dershowRowLayer-Eigenschaft ab.final booleanRuft den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft ab.final booleanReturns the value ofshowVerticalCursorProperty().final booleanRuft den Wert dershowZoneId-Eigenschaft ab.final booleanRuft den Wert dershowZoomTimeIntervalLayer-Eigenschaft ab.final ReadOnlyBooleanPropertyA boolean property used to indicate whether the lasso selection tool is currently in use or not.final BooleanPropertyA property used to control whether the user can use the lasso for selecting multiple activities at once.A property used to store the currently used lasso selection behaviour.final BooleanPropertyA boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.final IntegerPropertyA property used to store the number of grid levels that the user wants to see in the graphics view.final voidmoveLayerBackward(Layer layer) Moves the given layer backward within the stack of layers.final voidmoveLayerForward(Layer layer) Moves the given layer forward within the stack of layers.final voidmoveLayerToBack(Layer layer) Moves the given layer to the back so that the activities located on it will be drawn first and all other activities on other layers will be drawn on top of them.final voidmoveLayerToFront(Layer layer) Moves the given layer to the front so that the activities located on it will be drawn on top of all other activities.final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<ActivityEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<EventHandler<LassoEvent>> final ObjectProperty<Node> final ReadOnlyObjectProperty<ActivityRef<?>> voidredraw()Performs a redraw of the displayed activities.voidPerforms a redraw of the displayed activities and logs the given reason.voidForces an immediate redraw of all rows.final ObjectProperty<Predicate<R>> A predicate used to filter the rows.final ObjectProperty<Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>>> A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.final DoublePropertySpecifies the width of the so-called "row headers".final ListProperty<R> Returns the property used to store the list of rows.final BooleanPropertyReturns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).A property used to store the currently supported selection mode.final voidsetActivityEditingCallback(Class<? extends MutableActivity> activityType, Callback<GraphicsBase.EditingCallbackParameter, Boolean> callback) Registers a callback used to determine if a given editing operation can be used for a given activity.final voidsetActivityFilter(Predicate<Activity> filter) Sets the value ofactivityFilterProperty().final <A extends Activity>
voidsetActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType, ActivityRenderer<? extends A> renderer) Registers a renderer for the given activity and layout type.final voidsetAnimateRowEditor(boolean animate) Legt den Wert deranimateRowEditor-Eigenschaft fest.final voidsetAutoGridEnabled(boolean auto) Sets the value ofautoGridEnabledProperty().final voidsetAutoMarkedTimeInterval(boolean auto) Sets the value ofautoMarkedTimeIntervalProperty().final voidsetAutomaticRedraw(boolean automatic) Sets the value ofautomaticRedrawProperty().final voidsetCanvasBuffer(double canvasBuffer) Legt den Wert dercanvasBuffer-Eigenschaft fest.final voidSets the value ofcontextMenuCallbackProperty().final voidsetDebugMode(boolean debug) Sets the value ofdebugModeProperty().final voidLegt den Wert derdragAndDropFeedback-Eigenschaft fest.final voidsetDragImageProvider(Callback<ActivityRef<?>, Image> provider) Legt den Wert derdragImageProvider-Eigenschaft fest.final voidSets the value ofdropLayerProviderProperty().final voidsetEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType, Callback<GraphicsBase.EditModeCallbackParameter, GraphicsBase.EditMode> callback) final voidsetEnableRowResizing(boolean enableRowResizing) Legt den Wert derenableRowResizing-Eigenschaft fest.final voidsetFadeInOutVisibilityChanges(boolean show) Legt den Wert derfadeInOutVisibilityChanges-Eigenschaft fest.final voidsetFadeInOutVisibilityChangesDuration(double duration) Legt den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft fest.final voidsetFixedCellSize(double size) Sets the value offixedCellSizeProperty().voidsetGridLineColor1(Paint color) Legt den Wert dergridLineColor1-Eigenschaft fest.voidsetGridLineColor2(Paint color) Legt den Wert dergridLineColor2-Eigenschaft fest.voidsetGridLineColor3(Paint color) Legt den Wert dergridLineColor3-Eigenschaft fest.final voidsetHighlightDelay(long delay) Sets the value ofhighlightDelayProperty().final voidsetHorizontalDragEnabled(boolean enabled) Sets the value ofhorizontalDragEnabledProperty().voidsetInnerLinesColor(Paint color) Legt den Wert derinnerLinesColor-Eigenschaft fest.final voidsetLassoEnabled(boolean enabled) Sets the value oflassoEnabledProperty().final voidSets the value oflassoSelectionBehaviourProperty().final voidsetLassoSnapsToGrid(boolean snaps) Sets the value oflassoSnapsToGridProperty().final voidsetLinkRenderer(Class<? extends Activity> clazz, LinkRenderer<?> renderer) Sets a custom link renderer for the given type of activity link.final voidsetMaxGridLevel(int max) Sets the value ofmaxGridLevelProperty().final voidLegt den Wert deronActivityChange-Eigenschaft fest.final voidLegt den Wert deronActivityChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityChartHighValueChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChartHighValueChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityChartLowValueChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChartLowValueChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityChartValueChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChartValueChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChartValueChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityDeleted-Eigenschaft fest.final voidLegt den Wert deronActivityDragDone-Eigenschaft fest.final voidLegt den Wert deronActivityDragFinished-Eigenschaft fest.final voidLegt den Wert deronActivityDragOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityDragStarted-Eigenschaft fest.final voidLegt den Wert deronActivityEndTimeChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityEndTimeChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityEndTimeChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityHorizontalDragFinished-Eigenschaft fest.final voidLegt den Wert deronActivityHorizontalDragOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityHorizontalDragStarted-Eigenschaft fest.final voidLegt den Wert deronActivityPercentageChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityPercentageChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityPercentageChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityStartTimeChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityStartTimeChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityStartTimeChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragDone-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragFinished-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragStarted-Eigenschaft fest.final voidLegt den Wert deronLassoSelection-Eigenschaft fest.final voidLegt den Wert deronLassoSelectionFinished-Eigenschaft fest.final voidLegt den Wert deronLassoSelectionOngoing-Eigenschaft fest.final voidLegt den Wert deronLassoSelectionStarted-Eigenschaft fest.final voidsetPlaceholder(Node node) Legt den Wert derplaceholder-Eigenschaft fest.final voidLegt den Wert derrowControlsFactory-Eigenschaft fest.final voidsetRowDragAndDropCallback(Class<? extends Row> rowType, Callback<GraphicsBase.DragAndDropInfo, Boolean> callback) Specifies a callback that will be invoked when the user drags an activity over a row of the given type.final voidLegt den Wert derrowEditingMode-Eigenschaft fest.final voidsetRowEditorFactory(Callback<GraphicsBase.RowEditorParameter<R>, Node> factory) Legt den Wert derrowEditorFactory-Eigenschaft fest.final voidsetRowFilter(Predicate<R> predicate) Sets the value ofrowFilterProperty().final voidsetRowHeaderFactory(Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>> factory) Sets the value ofrowHeaderFactoryProperty().final voidsetRowHeadersWidth(double rowHeadersWidth) Legt den Wert derrowHeadersWidth-Eigenschaft fest.final voidsetRows(ObservableList<R> rows) Sets the value of therowsProperty().final voidsetSafeRendering(boolean safe) Sets the value ofsafeRenderingProperty().final voidSets the value ofselectionModeProperty().final voidsetShowAgendaLinesLayer(boolean show) Legt den Wert dershowAgendaLinesLayer-Eigenschaft fest.final voidsetShowCalendarLayer(boolean show) Legt den Wert dershowCalendarLayer-Eigenschaft fest.final voidsetShowChartLinesLayer(boolean show) Legt den Wert dershowChartLinesLayer-Eigenschaft fest.final voidsetShowDSTLineLayer(boolean show) Legt den Wert dershowDSTLineLayer-Eigenschaft fest.final voidsetShowGridLineLayer(boolean show) Legt den Wert dershowGridLineLayer-Eigenschaft fest.final voidsetShowHorizontalCursor(boolean show) Sets the value ofshowHorizontalCursorProperty().final voidsetShowHoverTimeIntervalLayer(boolean show) Legt den Wert dershowHoverTimeIntervalLayer-Eigenschaft fest.final voidsetShowInnerLinesLayer(boolean show) Legt den Wert dershowInnerLinesLayer-Eigenschaft fest.final voidsetShowLayoutLayer(boolean show) Legt den Wert dershowLayoutLayer-Eigenschaft fest.final voidsetShowLinks(boolean showLinks) Legt den Wert dershowLinks-Eigenschaft fest.final voidsetShowMarkedTimeInterval(boolean show) Sets the value ofshowMarkedTimeIntervalProperty().final voidsetShowNowLineLayer(boolean show) Legt den Wert dershowNowLineLayer-Eigenschaft fest.final voidsetShowRowHeaders(boolean showRowHeaders) Legt den Wert dershowRowHeaders-Eigenschaft fest.final voidsetShowRowLayer(boolean show) Legt den Wert dershowRowLayer-Eigenschaft fest.final voidsetShowSelectedTimeIntervalsLayer(boolean show) Legt den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft fest.final voidsetShowVerticalCursor(boolean show) Sets the value ofshowVerticalCursorProperty().final voidsetShowZoneId(boolean show) Legt den Wert dershowZoneId-Eigenschaft fest.final voidsetShowZoomTimeIntervalLayer(boolean show) Legt den Wert dershowZoomTimeIntervalLayer-Eigenschaft fest.final voidsetTimeline(Timeline timeline) Sets the value oftimelineProperty().voidsetTimeNowColor(Paint color) Legt den Wert dertimeNowColor-Eigenschaft fest.final voidsetVirtualGrid(VirtualGrid<?> grid) Legt den Wert dervirtualGrid-Eigenschaft fest.voidsetWeekendColor(Paint color) Legt den Wert derweekendColor-Eigenschaft fest.final BooleanPropertyfinal voidMakes theTimelineshow a time range starting with the earliest time used and ending with the latest time used by all currently loaded rows.final BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyfinal voidMakes theTimelinestart with the earliest time used by the currently loaded rows.final BooleanPropertyfinal BooleanPropertyA property used to control wether a horizontal cursor line will be shown by the graphics view.final BooleanPropertyfinal BooleanPropertyfinal voidMakes theTimelineshow the latest time used by the currently loaded rows.final BooleanPropertyfinal BooleanPropertyControls whether theLinksCanvaswill be visible and links will be drawn.final BooleanPropertyA property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).final BooleanPropertyfinal BooleanPropertyDetermines if the row headers will be shown to the user or not.final BooleanPropertyfinal BooleanPropertyfinal BooleanPropertyA property used to control whether a vertical cursor line will be shown by the graphics view.final BooleanPropertyfinal BooleanPropertyfinal voidstartRowEditing(R row) final voidfinal voidstopRowEditing(R row) final ObjectProperty<Timeline> A property used to store a reference to the timeline control above the graphics.final StyleableObjectProperty<Paint> final ObjectProperty<VirtualGrid<?>> final StyleableObjectProperty<Paint> Von Klasse geerbte Methoden com.flexganttfx.view.util.FlexGanttFXControl
getUserAgentStylesheetVon Klasse geerbte Methoden javafx.scene.control.Control
computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, contextMenuProperty, createDefaultSkin, executeAccessibleAction, getBaselineOffset, getContextMenu, getCssMetaData, getInitialFocusTraversable, getSkin, getTooltip, isResizable, layoutChildren, queryAccessibleAttribute, setContextMenu, setSkin, setTooltip, skinProperty, tooltipPropertyVon Klasse geerbte Methoden javafx.scene.layout.Region
backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, isScaleShape, isSnapToPixel, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setHeight, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, setWidth, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, snapToPixelProperty, widthPropertyVon Klasse geerbte Methoden javafx.scene.Parent
getChildren, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, lookup, needsLayoutProperty, requestLayout, requestParentLayout, setNeedsLayout, updateBoundsVon Klasse geerbte Methoden javafx.scene.Node
accessibleHelpProperty, accessibleRoleDescriptionProperty, accessibleRoleProperty, accessibleTextProperty, addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, fireEvent, focusedProperty, focusTraversableProperty, focusVisibleProperty, focusWithinProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getContentBias, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInitialCursor, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getStyleClass, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, getViewOrder, hasProperties, hoverProperty, idProperty, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isFocusVisible, isFocusWithin, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, notifyAccessibleAttributeChanged, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setAccessibleHelp, setAccessibleRole, setAccessibleRoleDescription, setAccessibleText, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setDisabled, setEffect, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setPressed, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setViewOrder, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, toString, translateXProperty, translateYProperty, translateZProperty, usesMirroring, viewOrderProperty, visiblePropertyVon Klasse geerbte Methoden java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitVon Schnittstelle geerbte Methoden javafx.css.Styleable
getStyleableNode
-
Eigenschaftsdetails
-
rowFilter
A predicate used to filter the rows.- Siehe auch:
-
activityFilter
A property used to store a filter function, which determines if an activity will be rendered or not. An activity will be drawn if the function returns "true".- Seit:
- 1.6
- Siehe auch:
-
lassoEnabled
A property used to control whether the user can use the lasso for selecting multiple activities at once.- Seit:
- 1.6
- Siehe auch:
-
automaticRedraw
A property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes. The default value is true. Applications can use this property to disable the redrawing when they know that they have to add a lot of activities but do not want the chart to perform a lot of redraws. The graphics will be redrawn right away when the value of this property changes from true to false or vice versa.- Seit:
- 1.5
- Siehe auch:
-
canvasBuffer
A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.- Siehe auch:
-
lassoActive
A boolean property used to indicate whether the lasso selection tool is currently in use or not.- Seit:
- 1.0
- Siehe auch:
-
lassoSnapsToGrid
A boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.- Seit:
- 1.1
- Siehe auch:
-
rows
Returns the property used to store the list of rows.- Seit:
- 1.6
- Siehe auch:
-
timeline
A property used to store a reference to the timeline control above the graphics.- Seit:
- 1.0
- Siehe auch:
-
fixedCellSize
A property used to store a fixed cell size for controls that are based on the virtual flow control. This value is not used by all subclasses of this class. Using a fixed cell size can result in a performance gain.- Seit:
- 1.0
- Siehe auch:
-
onActivityDeleted
- Siehe auch:
-
onActivityChange
- Siehe auch:
-
onActivityChangeStarted
- Siehe auch:
-
onActivityChangeOngoing
- Siehe auch:
-
onActivityChangeFinished
- Siehe auch:
-
onActivityDragStarted
- Siehe auch:
-
onActivityDragOngoing
- Siehe auch:
-
onActivityDragFinished
- Siehe auch:
-
onActivityDragDone
- Siehe auch:
-
onActivityChartValueChangeStarted
- Siehe auch:
-
onActivityChartValueChangeOngoing
- Siehe auch:
-
onActivityChartValueChangeFinished
- Siehe auch:
-
onActivityChartHighValueChangeStarted
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeStartedProperty- Siehe auch:
-
onActivityChartHighValueChangeOngoing
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeOngoingProperty- Siehe auch:
-
onActivityChartHighValueChangeFinished
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeFinishedProperty- Siehe auch:
-
onActivityChartLowValueChangeStarted
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeStartedProperty- Siehe auch:
-
onActivityChartLowValueChangeOngoing
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeOngoingProperty- Siehe auch:
-
onActivityChartLowValueChangeFinished
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeFinishedProperty- Siehe auch:
-
onActivityHorizontalDragStarted
- Siehe auch:
-
onActivityHorizontalDragOngoing
- Siehe auch:
-
onActivityHorizontalDragFinished
- Siehe auch:
-
onActivityVerticalDragStarted
- Siehe auch:
-
onActivityVerticalDragOngoing
- Siehe auch:
-
onActivityVerticalDragFinished
- Siehe auch:
-
onActivityVerticalDragDone
- Siehe auch:
-
onActivityEndTimeChangeStarted
- Siehe auch:
-
onActivityEndTimeChangeOngoing
- Siehe auch:
-
onActivityEndTimeChangeFinished
- Siehe auch:
-
onActivityPercentageChangeStarted
- Siehe auch:
-
onActivityPercentageChangeOngoing
- Siehe auch:
-
onActivityPercentageChangeFinished
- Siehe auch:
-
onActivityStartTimeChangeStarted
- Siehe auch:
-
onActivityStartTimeChangeOngoing
- Siehe auch:
-
onActivityStartTimeChangeFinished
- Siehe auch:
-
onLassoSelection
- Siehe auch:
-
onLassoSelectionStarted
- Siehe auch:
-
onLassoSelectionOngoing
- Siehe auch:
-
onLassoSelectionFinished
- Siehe auch:
-
editMode
A property used to store the currently active editing mode, e.g. "changing start time", "changing end time", "dragging horizontally", "dragging vertically", etc...
The property is read-only as it can not be set from the outside. It is being updated when the user moves the mouse cursor on top of an activity. The edit mode depends on the location of the cursor (left or right edge, center). SeesetActivityEditingCallback(Class, Callback)for mapping mouse events to editing operations.- Seit:
- 1.0
- Siehe auch:
-
highlightDelay
A property used to store the delay between two "blinks" of highlighted rows or activities.- Seit:
- 1.0
- Siehe auch:
-
highlighted
A read-only property used to control the highlighting effect. The value of this property gets frequently toggled between true and false so that is triggers a redraw of the graphics and a blink effect.- Seit:
- 1.0
- Siehe auch:
-
contextMenuCallback
public final ObjectProperty<Callback<GraphicsBase.ContextMenuParameter<R extends Row<?,?, contextMenuCallbackProperty?>>, ContextMenu>> A property used to store a callback which is used for creating a context menu. Context menus can also be used by simply callingControl.setContextMenu(ContextMenu)but using this callback saves you from collecting all the information and objects that can be found at the location of the context menu trigger event.- Seit:
- 1.0
- Siehe auch:
-
autoMarkedTimeInterval
Controls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally). The default is "true".- Siehe auch:
-
maxGridLevel
A property used to store the number of grid levels that the user wants to see in the graphics view. The value of this property must be between 1 and 5. The grid level depends on the number of scales shown by the dateline (seeDateline.getScaleResolutions()). If the dateline is currently showing two scales (e.g. days and weeks) then the graphics view and theGridLinesLayercan also display two different grid lines, for example a light gray one for days and a dark gray one for weeks.- Seit:
- 1.0
- Siehe auch:
-
showVerticalCursor
A property used to control whether a vertical cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Seit:
- 1.0
- Siehe auch:
-
showHorizontalCursor
A property used to control wether a horizontal cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Seit:
- 1.0
- Siehe auch:
-
showMarkedTimeInterval
A property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).- Seit:
- 1.1
- Siehe auch:
-
debugMode
A property used to enable / disable the debug mode. The debug mode will cause the object bounds of activities to be rendered in the graphics view and also the bounds of the lasso selection tool. Other information might get added in the future.- Seit:
- 1.0
- Siehe auch:
-
autoGridEnabled
A property used to enable / disable the autogrid mode. The autogrid mode will cause activities to snap to times based on the currently shown granularity of the dateline. If the dateline is showing "days" then the activities will snap to the beginning and / or end of a day. If the dateline is showing hours then the activities will snap to full hours.- Seit:
- 1.1
- Siehe auch:
-
gridEnabled
A convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.- Seit:
- 1.2
- Siehe auch:
-
selectionMode
A property used to store the currently supported selection mode. The graphics view supports single, multiple, and none.- Seit:
- 1.0
- Siehe auch:
-
lassoSelectionBehaviour
A property used to store the currently used lasso selection behaviour. This value of this property controls when an activity is actually considered selected by the lasso: does it need to be completely inside the lasso bounds or is it enough when it gets touched by the lasso?- Seit:
- 1.0
- Siehe auch:
-
hoverActivity
- Siehe auch:
-
hoverRow
- Siehe auch:
-
hoverLayout
- Siehe auch:
-
editedActivity
- Siehe auch:
-
pressedActivity
- Siehe auch:
-
virtualGrid
- Siehe auch:
-
placeholder
- Siehe auch:
-
dragAndDropInfo
A property used to store the current drag and drop information. This object stores data relevant to the current drag and drop operation.- Seit:
- 1.0
- Siehe auch:
-
dragImageProvider
- Siehe auch:
-
showAgendaLinesLayer
- Siehe auch:
-
showCalendarLayer
- Siehe auch:
-
showLayoutLayer
- Siehe auch:
-
showChartLinesLayer
- Siehe auch:
-
showGridLineLayer
- Siehe auch:
-
showHoverTimeIntervalLayer
- Siehe auch:
-
showInnerLinesLayer
- Siehe auch:
-
showNowLineLayer
- Siehe auch:
-
showDSTLineLayer
- Siehe auch:
-
showRowLayer
- Siehe auch:
-
showSelectedTimeIntervalsLayer
- Siehe auch:
-
showZoomTimeIntervalLayer
- Siehe auch:
-
showZoneId
- Siehe auch:
-
fadeInOutVisibilityChanges
- Siehe auch:
-
fadeInOutVisibilityChangesDuration
- Siehe auch:
-
showLinks
Controls whether theLinksCanvaswill be visible and links will be drawn.- Siehe auch:
-
dragAndDropFeedback
- Siehe auch:
-
rowControlsFactory
public final ObjectProperty<Callback<GraphicsBase.RowControlsParameter<R extends Row<?,?, rowControlsFactoryProperty?>>, Node>> - Siehe auch:
-
enableRowResizing
Controls whether the view allows the user to interactively resize the row / change the row height.- Seit:
- 11.12.0
- Siehe auch:
-
rowHeaderFactory
public final ObjectProperty<Callback<GraphicsBase<R extends Row<?,?, rowHeaderFactoryProperty?>>, GraphicsBase.RowHeader<R extends Row<?, ?, ?>>>> A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.- Seit:
- 11.11.0
- Siehe auch:
-
showRowHeaders
Determines if the row headers will be shown to the user or not.- Seit:
- 11.11.0
- Siehe auch:
-
rowHeadersWidth
Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.- Seit:
- 11.11.0
- Siehe auch:
-
rowEditorFactory
public final ObjectProperty<Callback<GraphicsBase.RowEditorParameter<R extends Row<?,?, rowEditorFactoryProperty?>>, Node>> - Siehe auch:
-
rowEditingMode
- Siehe auch:
-
animateRowEditor
- Siehe auch:
-
dropLayerProvider
public final ObjectProperty<Callback<GraphicsBase.DragAndDropInfo, Layer>> dropLayerProviderPropertyA property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished. The default provider returns the layer on which the activity is currently shown.- Seit:
- 1.2
- Siehe auch:
-
horizontalDragEnabled
Determines whether the user can perform a horizontal drag with a mouse drag.- Seit:
- 1.3
- Siehe auch:
-
safeRendering
Returns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).Using save / restore will ensure that the pluggable system layers and activity renderers will not have any side effects on each other. Setting this property to true has an impact on performance. The default value of this property is false.
Example
The following code shows how the property is used within the framework.GraphicsContext gc = canvas.getGraphicsContext2D(); if (graphics.isSafeRendering()) { gc.save(); } gc.setTransform(...); gc.strokeLine(...); if (graphics.isSafeRendering()) { gc.restore(); }- Siehe auch:
-
gridLineColor1
- Siehe auch:
-
gridLineColor2
- Siehe auch:
-
gridLineColor3
- Siehe auch:
-
weekendColor
- Siehe auch:
-
timeNowColor
- Siehe auch:
-
innerLinesColor
- Siehe auch:
-
-
Konstruktordetails
-
GraphicsBase
public GraphicsBase()Constructs a new graphics view and initializes the following:- Virtual grid settings (1, 5, 10, 15, 30, 60 Minutes)
- Activity renderers for several of the default model classes.
- Edit mode callbacks for several of the default model classes.
- Activity editing callbacks.
- Background and foreground layers.
- Calendars (e. g. weekend calendar).
- Seit:
- 1.0
-
-
Methodendetails
-
getUserAgentStylesheet
- Setzt außer Kraft:
getUserAgentStylesheetin KlasseRegion
-
rowFilterProperty
A predicate used to filter the rows.- Gibt zurück:
- the filter predicate
- Siehe auch:
-
setRowFilter
Sets the value ofrowFilterProperty().- Parameter:
predicate- the filter predicate
-
getRowFilter
Returns the value ofrowFilterProperty().- Gibt zurück:
- the filter predicate
-
activityFilterProperty
A property used to store a filter function, which determines if an activity will be rendered or not. An activity will be drawn if the function returns "true".- Gibt zurück:
- the predicate / the filter function for activities
- Seit:
- 1.6
- Siehe auch:
-
getActivityFilter
Returns the value ofactivityFilterProperty().- Gibt zurück:
- the predicate / the filter function for activities
- Seit:
- 1.6
-
setActivityFilter
Sets the value ofactivityFilterProperty().- Parameter:
filter- the filter function- Seit:
- 1.6
-
lassoEnabledProperty
A property used to control whether the user can use the lasso for selecting multiple activities at once.- Gibt zurück:
- the lasso enabled property
- Seit:
- 1.6
- Siehe auch:
-
setLassoEnabled
public final void setLassoEnabled(boolean enabled) Sets the value oflassoEnabledProperty().- Parameter:
enabled- if true, the lasso will be usable by the user- Seit:
- 1.6
-
isLassoEnabled
public final boolean isLassoEnabled()Returns the value oflassoEnabledProperty().- Gibt zurück:
- true if the user can use the lasso
- Seit:
- 1.6
-
automaticRedrawProperty
A property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes. The default value is true. Applications can use this property to disable the redrawing when they know that they have to add a lot of activities but do not want the chart to perform a lot of redraws. The graphics will be redrawn right away when the value of this property changes from true to false or vice versa.- Gibt zurück:
- the automatic redraw property
- Seit:
- 1.5
- Siehe auch:
-
isAutomaticRedraw
public final boolean isAutomaticRedraw()Returns the value ofautomaticRedrawProperty().- Gibt zurück:
- true if automatic redrawing will be performed (default)
- Seit:
- 1.5
-
setAutomaticRedraw
public final void setAutomaticRedraw(boolean automatic) Sets the value ofautomaticRedrawProperty().- Parameter:
automatic- if true, then the graphics redraw after every repository change event- Seit:
- 1.5
-
getCanvasBuffer
public final double getCanvasBuffer()Ruft den Wert dercanvasBuffer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.
- Gibt zurück:
- Wert der Eigenschaft
canvasBuffer - Siehe auch:
-
canvasBufferProperty
A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.- Gibt zurück:
- the canvas buffer size (default is 250 pixel)
- Siehe auch:
-
setCanvasBuffer
public final void setCanvasBuffer(double canvasBuffer) Legt den Wert dercanvasBuffer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.
- Parameter:
canvasBuffer- Wert für die EigenschaftcanvasBuffer- Siehe auch:
-
lassoActiveProperty
A boolean property used to indicate whether the lasso selection tool is currently in use or not.- Gibt zurück:
- true if the user is currently performing a lasso selection operation
- Seit:
- 1.0
- Siehe auch:
-
isLassoActive
public final boolean isLassoActive()Returns the value oflassoActiveProperty().- Gibt zurück:
- true if the user is currently performing a lasso selection operation.
- Seit:
- 1.0
-
lassoSnapsToGridProperty
A boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.- Gibt zurück:
- the lasso snaps property
- Seit:
- 1.1
- Siehe auch:
-
isLassoSnapsToGrid
public final boolean isLassoSnapsToGrid()Returns the value oflassoSnapsToGridProperty().- Gibt zurück:
- true if the lasso is obeying the current virtual grid settings
- Seit:
- 1.1
-
setLassoSnapsToGrid
public final void setLassoSnapsToGrid(boolean snaps) Sets the value oflassoSnapsToGridProperty().- Parameter:
snaps- if true, the lasso will obey the grid- Seit:
- 1.1
-
getLinks
Returns the interval tree that is used to store all activity links of the model.- Gibt zurück:
- a list of activity links
- Seit:
- 1.0
-
getLayers
Returns the list that is used to store all layers of the model.- Gibt zurück:
- a list of layers
- Seit:
- 1.0
-
rowsProperty
Returns the property used to store the list of rows.- Gibt zurück:
- the list of rows
- Seit:
- 1.6
- Siehe auch:
-
setRows
Sets the value of therowsProperty().- Parameter:
rows- the new rows to display- Seit:
- 1.6
-
getRows
Returns the list that is used to store all rows of the model.- Gibt zurück:
- a list of rows
- Seit:
- 1.6
-
timelineProperty
A property used to store a reference to the timeline control above the graphics.- Gibt zurück:
- the property used to store the timeline reference
- Seit:
- 1.0
- Siehe auch:
-
setTimeline
Sets the value oftimelineProperty().- Parameter:
timeline- the timeline control above the graphics- Seit:
- 1.0
-
getTimeline
Returns the value oftimelineProperty().- Gibt zurück:
- the timeline control above the graphics
- Seit:
- 1.0
-
fixedCellSizeProperty
A property used to store a fixed cell size for controls that are based on the virtual flow control. This value is not used by all subclasses of this class. Using a fixed cell size can result in a performance gain.- Gibt zurück:
- the property used to store a fixed cell size
- Seit:
- 1.0
- Siehe auch:
-
getFixedCellSize
public final double getFixedCellSize()Returns the value offixedCellSizeProperty().- Gibt zurück:
- the fixed cell size (default is -1)
- Seit:
- 1.0
-
setFixedCellSize
public final void setFixedCellSize(double size) Sets the value offixedCellSizeProperty().- Parameter:
size- the fixed cell size, -1 to disable fixed cell size- Seit:
- 1.0
-
getLocation
Returns the x coordinate for the given time.- Parameter:
time- the time for which to look up a coordinate- Gibt zurück:
- the x coordinate for the given time
- Seit:
- 1.0
- Siehe auch:
-
getTimeAt
Returns the time at the given location.- Parameter:
location- the x-coordinate for which to retrieve the time- Gibt zurück:
- the time at the given location
- Seit:
- 1.0
-
getLocalTimeAt
Returns the local time at the given location. This method will only return a valid value if theAgendaLayoutis being used at the given location (in graphics view coordinate space).- Parameter:
y- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the local time at the given location or null if location not
managed by an
AgendaLayout - Seit:
- 1.0
-
getRowAt
Finds the row at the given y-coordinate.- Parameter:
y- the y-coordinate in the coordinate space of the graphics view for which to return a row model object- Gibt zurück:
- the row model object at the given y-coordinate
- Seit:
- 1.0
-
getLayoutAt
Finds the layout that is being used at the given y-coordinate.- Parameter:
y- the y-coordinate in the coordinate space of the graphics view for which to return the layout- Gibt zurück:
- the layout used at the given location
- Seit:
- 1.0
-
getActivityBoundsAt
Finds the activity bounds at the given location. Returns the bounds of the activity drawn last if several activities can be found at the given location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the bounds of the activity found at the given location or null if no activity can be found
- Seit:
- 1.0
-
getActivityRefAt
Finds the activity reference at the given location. Returns the reference of the activity drawn last if several activities can be found at the given location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the reference of the activity found at the given location or null if no activity can be found
- Seit:
- 1.0
-
getAllActivityBoundsAt
Returns the bounds of all activities found at the given location. Activities can be drawn on top of each other, hence several bounds can exist at the same location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the bounds of the activities found at the given location or null if no activities can be found
- Seit:
- 1.0
-
getAllActivityRefsAt
Returns the references to all activities found at the given location. Activities can be drawn on top of each other, hence several references can exist at the same location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the references of all activities found at the given location or null if no activities can be found
- Seit:
- 1.0
-
getAllCalendarActivitiesAt
Finds all calendar activities at the given location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- all calendar activities at the given location
- Seit:
- 1.1
-
moveLayerToFront
Moves the given layer to the front so that the activities located on it will be drawn on top of all other activities.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
moveLayerToBack
Moves the given layer to the back so that the activities located on it will be drawn first and all other activities on other layers will be drawn on top of them.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
moveLayerForward
Moves the given layer forward within the stack of layers.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
moveLayerBackward
Moves the given layer backward within the stack of layers.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
onActivityDeletedProperty
- Gibt zurück:
- die Eigenschaft
onActivityDeleted - Siehe auch:
-
setOnActivityDeleted
Legt den Wert deronActivityDeleted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityDeleted- Siehe auch:
-
getOnActivityDeleted
Ruft den Wert deronActivityDeleted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityDeleted - Siehe auch:
-
onActivityChangeProperty
- Gibt zurück:
- die Eigenschaft
onActivityChange - Siehe auch:
-
setOnActivityChange
Legt den Wert deronActivityChange-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChange- Siehe auch:
-
getOnActivityChange
Ruft den Wert deronActivityChange-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChange - Siehe auch:
-
onActivityChangeStartedProperty
- Gibt zurück:
- die Eigenschaft
onActivityChangeStarted - Siehe auch:
-
setOnActivityChangeStarted
Legt den Wert deronActivityChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChangeStarted- Siehe auch:
-
getOnActivityChangeStarted
Ruft den Wert deronActivityChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChangeStarted - Siehe auch:
-
onActivityChangeOngoingProperty
- Gibt zurück:
- die Eigenschaft
onActivityChangeOngoing - Siehe auch:
-
setOnActivityChangeOngoing
Legt den Wert deronActivityChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChangeOngoing- Siehe auch:
-
getOnActivityChangeOngoing
Ruft den Wert deronActivityChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChangeOngoing - Siehe auch:
-
onActivityChangeFinishedProperty
- Gibt zurück:
- die Eigenschaft
onActivityChangeFinished - Siehe auch:
-
setOnActivityChangeFinished
Legt den Wert deronActivityChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChangeFinished- Siehe auch:
-
getOnActivityChangeFinished
Ruft den Wert deronActivityChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChangeFinished - Siehe auch:
-
onActivityDragStartedProperty
- Gibt zurück:
- die Eigenschaft
onActivityDragStarted - Siehe auch:
-
setOnActivityDragStarted
Legt den Wert deronActivityDragStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityDragStarted- Siehe auch:
-
getOnActivityDragStarted
Ruft den Wert deronActivityDragStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragStarted - Siehe auch:
-
onActivityDragOngoingProperty
- Gibt zurück:
- die Eigenschaft
onActivityDragOngoing - Siehe auch:
-
setOnActivityDragOngoing
Legt den Wert deronActivityDragOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityDragOngoing- Siehe auch:
-
getOnActivityDragOngoing
Ruft den Wert deronActivityDragOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragOngoing - Siehe auch:
-
onActivityDragFinishedProperty
- Gibt zurück:
- die Eigenschaft
onActivityDragFinished - Siehe auch:
-
setOnActivityDragFinished
Legt den Wert deronActivityDragFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityDragFinished- Siehe auch:
-
getOnActivityDragFinished
Ruft den Wert deronActivityDragFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragFinished - Siehe auch:
-
onActivityDragDoneProperty
- Gibt zurück:
- die Eigenschaft
onActivityDragDone - Siehe auch:
-
setOnActivityDragDone
Legt den Wert deronActivityDragDone-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityDragDone- Siehe auch:
-
getOnActivityDragDone
Ruft den Wert deronActivityDragDone-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragDone - Siehe auch:
-
onActivityChartValueChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartValueChangeStartedProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartValueChangeStarted - Siehe auch:
-
setOnActivityChartValueChangeStarted
Legt den Wert deronActivityChartValueChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartValueChangeStarted- Siehe auch:
-
getOnActivityChartValueChangeStarted
Ruft den Wert deronActivityChartValueChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartValueChangeStarted - Siehe auch:
-
onActivityChartValueChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartValueChangeOngoingProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartValueChangeOngoing - Siehe auch:
-
setOnActivityChartValueChangeOngoing
Legt den Wert deronActivityChartValueChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartValueChangeOngoing- Siehe auch:
-
getOnActivityChartValueChangeOngoing
Ruft den Wert deronActivityChartValueChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartValueChangeOngoing - Siehe auch:
-
onActivityChartValueChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartValueChangeFinishedProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartValueChangeFinished - Siehe auch:
-
setOnActivityChartValueChangeFinished
Legt den Wert deronActivityChartValueChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartValueChangeFinished- Siehe auch:
-
getOnActivityChartValueChangeFinished
Ruft den Wert deronActivityChartValueChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartValueChangeFinished - Siehe auch:
-
onActivityChartHighValueChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeStartedProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartHighValueChangeStarted - Siehe auch:
-
setOnActivityChartHighValueChangeStarted
Legt den Wert deronActivityChartHighValueChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartHighValueChangeStarted- Siehe auch:
-
getOnActivityChartHighValueChangeStarted
Ruft den Wert deronActivityChartHighValueChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartHighValueChangeStarted - Siehe auch:
-
onActivityChartHighValueChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeOngoingProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartHighValueChangeOngoing - Siehe auch:
-
setOnActivityChartHighValueChangeOngoing
Legt den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartHighValueChangeOngoing- Siehe auch:
-
getOnActivityChartHighValueChangeOngoing
Ruft den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartHighValueChangeOngoing - Siehe auch:
-
onActivityChartHighValueChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeFinishedProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartHighValueChangeFinished - Siehe auch:
-
setOnActivityChartHighValueChangeFinished
Legt den Wert deronActivityChartHighValueChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartHighValueChangeFinished- Siehe auch:
-
getOnActivityChartHighValueChangeFinished
Ruft den Wert deronActivityChartHighValueChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartHighValueChangeFinished - Siehe auch:
-
onActivityChartLowValueChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeStartedProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartLowValueChangeStarted - Siehe auch:
-
setOnActivityChartLowValueChangeStarted
Legt den Wert deronActivityChartLowValueChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartLowValueChangeStarted- Siehe auch:
-
getOnActivityChartLowValueChangeStarted
Ruft den Wert deronActivityChartLowValueChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartLowValueChangeStarted - Siehe auch:
-
onActivityChartLowValueChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeOngoingProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartLowValueChangeOngoing - Siehe auch:
-
setOnActivityChartLowValueChangeOngoing
Legt den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartLowValueChangeOngoing- Siehe auch:
-
getOnActivityChartLowValueChangeOngoing
Ruft den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartLowValueChangeOngoing - Siehe auch:
-
onActivityChartLowValueChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeFinishedProperty()- Gibt zurück:
- die Eigenschaft
onActivityChartLowValueChangeFinished - Siehe auch:
-
setOnActivityChartLowValueChangeFinished
Legt den Wert deronActivityChartLowValueChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityChartLowValueChangeFinished- Siehe auch:
-
getOnActivityChartLowValueChangeFinished
Ruft den Wert deronActivityChartLowValueChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartLowValueChangeFinished - Siehe auch:
-
onActivityHorizontalDragStartedProperty
- Gibt zurück:
- die Eigenschaft
onActivityHorizontalDragStarted - Siehe auch:
-
setOnActivityHorizontalDragStarted
Legt den Wert deronActivityHorizontalDragStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityHorizontalDragStarted- Siehe auch:
-
getOnActivityHorizontalDragStarted
Ruft den Wert deronActivityHorizontalDragStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityHorizontalDragStarted - Siehe auch:
-
onActivityHorizontalDragOngoingProperty
- Gibt zurück:
- die Eigenschaft
onActivityHorizontalDragOngoing - Siehe auch:
-
setOnActivityHorizontalDragOngoing
Legt den Wert deronActivityHorizontalDragOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityHorizontalDragOngoing- Siehe auch:
-
getOnActivityHorizontalDragOngoing
Ruft den Wert deronActivityHorizontalDragOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityHorizontalDragOngoing - Siehe auch:
-
onActivityHorizontalDragFinishedProperty
- Gibt zurück:
- die Eigenschaft
onActivityHorizontalDragFinished - Siehe auch:
-
setOnActivityHorizontalDragFinished
Legt den Wert deronActivityHorizontalDragFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityHorizontalDragFinished- Siehe auch:
-
getOnActivityHorizontalDragFinished
Ruft den Wert deronActivityHorizontalDragFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityHorizontalDragFinished - Siehe auch:
-
onActivityVerticalDragStartedProperty
- Gibt zurück:
- die Eigenschaft
onActivityVerticalDragStarted - Siehe auch:
-
setOnActivityVerticalDragStarted
Legt den Wert deronActivityVerticalDragStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragStarted- Siehe auch:
-
getOnActivityVerticalDragStarted
Ruft den Wert deronActivityVerticalDragStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragStarted - Siehe auch:
-
onActivityVerticalDragOngoingProperty
- Gibt zurück:
- die Eigenschaft
onActivityVerticalDragOngoing - Siehe auch:
-
setOnActivityVerticalDragOngoing
Legt den Wert deronActivityVerticalDragOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragOngoing- Siehe auch:
-
getOnActivityVerticalDragOngoing
Ruft den Wert deronActivityVerticalDragOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragOngoing - Siehe auch:
-
onActivityVerticalDragFinishedProperty
- Gibt zurück:
- die Eigenschaft
onActivityVerticalDragFinished - Siehe auch:
-
setOnActivityVerticalDragFinished
Legt den Wert deronActivityVerticalDragFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragFinished- Siehe auch:
-
getOnActivityVerticalDragFinished
Ruft den Wert deronActivityVerticalDragFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragFinished - Siehe auch:
-
onActivityVerticalDragDoneProperty
- Gibt zurück:
- die Eigenschaft
onActivityVerticalDragDone - Siehe auch:
-
setOnActivityVerticalDragDone
Legt den Wert deronActivityVerticalDragDone-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragDone- Siehe auch:
-
getOnActivityVerticalDragDone
Ruft den Wert deronActivityVerticalDragDone-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragDone - Siehe auch:
-
onActivityEndTimeChangeStartedProperty
- Gibt zurück:
- die Eigenschaft
onActivityEndTimeChangeStarted - Siehe auch:
-
setOnActivityEndTimeChangeStarted
Legt den Wert deronActivityEndTimeChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityEndTimeChangeStarted- Siehe auch:
-
getOnActivityEndTimeChangeStarted
Ruft den Wert deronActivityEndTimeChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityEndTimeChangeStarted - Siehe auch:
-
onActivityEndTimeChangeOngoingProperty
- Gibt zurück:
- die Eigenschaft
onActivityEndTimeChangeOngoing - Siehe auch:
-
setOnActivityEndTimeChangeOngoing
Legt den Wert deronActivityEndTimeChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityEndTimeChangeOngoing- Siehe auch:
-
getOnActivityEndTimeChangeOngoing
Ruft den Wert deronActivityEndTimeChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityEndTimeChangeOngoing - Siehe auch:
-
onActivityEndTimeChangeFinishedProperty
- Gibt zurück:
- die Eigenschaft
onActivityEndTimeChangeFinished - Siehe auch:
-
setOnActivityEndTimeChangeFinished
Legt den Wert deronActivityEndTimeChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityEndTimeChangeFinished- Siehe auch:
-
getOnActivityEndTimeChangeFinished
Ruft den Wert deronActivityEndTimeChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityEndTimeChangeFinished - Siehe auch:
-
onActivityPercentageChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityPercentageChangeStartedProperty()- Gibt zurück:
- die Eigenschaft
onActivityPercentageChangeStarted - Siehe auch:
-
setOnActivityPercentageChangeStarted
Legt den Wert deronActivityPercentageChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityPercentageChangeStarted- Siehe auch:
-
getOnActivityPercentageChangeStarted
Ruft den Wert deronActivityPercentageChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityPercentageChangeStarted - Siehe auch:
-
onActivityPercentageChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityPercentageChangeOngoingProperty()- Gibt zurück:
- die Eigenschaft
onActivityPercentageChangeOngoing - Siehe auch:
-
setOnActivityPercentageChangeOngoing
Legt den Wert deronActivityPercentageChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityPercentageChangeOngoing- Siehe auch:
-
getOnActivityPercentageChangeOngoing
Ruft den Wert deronActivityPercentageChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityPercentageChangeOngoing - Siehe auch:
-
onActivityPercentageChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityPercentageChangeFinishedProperty()- Gibt zurück:
- die Eigenschaft
onActivityPercentageChangeFinished - Siehe auch:
-
setOnActivityPercentageChangeFinished
Legt den Wert deronActivityPercentageChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityPercentageChangeFinished- Siehe auch:
-
getOnActivityPercentageChangeFinished
Ruft den Wert deronActivityPercentageChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityPercentageChangeFinished - Siehe auch:
-
onActivityStartTimeChangeStartedProperty
- Gibt zurück:
- die Eigenschaft
onActivityStartTimeChangeStarted - Siehe auch:
-
setOnActivityStartTimeChangeStarted
Legt den Wert deronActivityStartTimeChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityStartTimeChangeStarted- Siehe auch:
-
getOnActivityStartTimeChangeStarted
Ruft den Wert deronActivityStartTimeChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityStartTimeChangeStarted - Siehe auch:
-
onActivityStartTimeChangeOngoingProperty
- Gibt zurück:
- die Eigenschaft
onActivityStartTimeChangeOngoing - Siehe auch:
-
setOnActivityStartTimeChangeOngoing
Legt den Wert deronActivityStartTimeChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityStartTimeChangeOngoing- Siehe auch:
-
getOnActivityStartTimeChangeOngoing
Ruft den Wert deronActivityStartTimeChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityStartTimeChangeOngoing - Siehe auch:
-
onActivityStartTimeChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityStartTimeChangeFinishedProperty()- Gibt zurück:
- die Eigenschaft
onActivityStartTimeChangeFinished - Siehe auch:
-
setOnActivityStartTimeChangeFinished
Legt den Wert deronActivityStartTimeChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonActivityStartTimeChangeFinished- Siehe auch:
-
getOnActivityStartTimeChangeFinished
Ruft den Wert deronActivityStartTimeChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onActivityStartTimeChangeFinished - Siehe auch:
-
onLassoSelectionProperty
- Gibt zurück:
- die Eigenschaft
onLassoSelection - Siehe auch:
-
setOnLassoSelection
Legt den Wert deronLassoSelection-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonLassoSelection- Siehe auch:
-
getOnLassoSelection
Ruft den Wert deronLassoSelection-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelection - Siehe auch:
-
onLassoSelectionStartedProperty
- Gibt zurück:
- die Eigenschaft
onLassoSelectionStarted - Siehe auch:
-
setOnLassoSelectionStarted
Legt den Wert deronLassoSelectionStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonLassoSelectionStarted- Siehe auch:
-
getOnLassoSelectionStarted
Ruft den Wert deronLassoSelectionStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelectionStarted - Siehe auch:
-
onLassoSelectionOngoingProperty
- Gibt zurück:
- die Eigenschaft
onLassoSelectionOngoing - Siehe auch:
-
setOnLassoSelectionOngoing
Legt den Wert deronLassoSelectionOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonLassoSelectionOngoing- Siehe auch:
-
getOnLassoSelectionOngoing
Ruft den Wert deronLassoSelectionOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelectionOngoing - Siehe auch:
-
onLassoSelectionFinishedProperty
- Gibt zurück:
- die Eigenschaft
onLassoSelectionFinished - Siehe auch:
-
setOnLassoSelectionFinished
Legt den Wert deronLassoSelectionFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
value- Wert für die EigenschaftonLassoSelectionFinished- Siehe auch:
-
getOnLassoSelectionFinished
Ruft den Wert deronLassoSelectionFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelectionFinished - Siehe auch:
-
editModeProperty
A property used to store the currently active editing mode, e.g. "changing start time", "changing end time", "dragging horizontally", "dragging vertically", etc...
The property is read-only as it can not be set from the outside. It is being updated when the user moves the mouse cursor on top of an activity. The edit mode depends on the location of the cursor (left or right edge, center). SeesetActivityEditingCallback(Class, Callback)for mapping mouse events to editing operations.- Gibt zurück:
- the currently active edit mode
- Seit:
- 1.0
- Siehe auch:
-
getEditMode
Returns the value ofeditModeProperty().- Gibt zurück:
- the currently active edit mode
- Seit:
- 1.0
-
getHighlightedRows
Returns a set that is used to store the currently highlighted rows. A row added to this set will start blinking and draw the attention of the user to it.- Gibt zurück:
- the set of highlighted rows
- Seit:
- 1.0
- Siehe auch:
-
getHighlightedActivities
Returns a set that is used to store the currently highighted activities. An activity added to this set will start blinking and draw the attention of the user to it.- Gibt zurück:
- the set of highlighted activities
- Seit:
- 1.0
- Siehe auch:
-
highlightDelayProperty
A property used to store the delay between two "blinks" of highlighted rows or activities.- Gibt zurück:
- the property used for the delay (in milliseconds)
- Seit:
- 1.0
- Siehe auch:
-
setHighlightDelay
public final void setHighlightDelay(long delay) Sets the value ofhighlightDelayProperty().- Parameter:
delay- the highlight delay in milliseconds- Seit:
- 1.0
-
getHighlightDelay
public final long getHighlightDelay()Returns the value ofhighlightDelayProperty().- Gibt zurück:
- the highlight delay in milliseconds
- Seit:
- 1.0
-
highlightedProperty
A read-only property used to control the highlighting effect. The value of this property gets frequently toggled between true and false so that is triggers a redraw of the graphics and a blink effect.- Gibt zurück:
- a read-only property that signals if the highlight is on or off (causes blinking)
- Seit:
- 1.0
- Siehe auch:
-
isHighlighted
public final boolean isHighlighted()Returns the value ofhighlightedProperty().- Gibt zurück:
- a flag value used to toggle the highlighting effect
- Seit:
- 1.0
-
contextMenuCallbackProperty
public final ObjectProperty<Callback<GraphicsBase.ContextMenuParameter<R>, ContextMenu>> contextMenuCallbackProperty()A property used to store a callback which is used for creating a context menu. Context menus can also be used by simply callingControl.setContextMenu(ContextMenu)but using this callback saves you from collecting all the information and objects that can be found at the location of the context menu trigger event.- Gibt zurück:
- a callback for creating a context menu
- Seit:
- 1.0
- Siehe auch:
-
setContextMenuCallback
public final void setContextMenuCallback(Callback<GraphicsBase.ContextMenuParameter<R>, ContextMenu> callback) Sets the value ofcontextMenuCallbackProperty().- Parameter:
callback- a callback for creating a parameterized context menu- Seit:
- 1.0
-
getContextMenuCallback
Returns the value ofcontextMenuCallbackProperty().- Gibt zurück:
- the callback for creating a parameterized context menu
- Seit:
- 1.0
-
autoMarkedTimeIntervalProperty
Controls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally). The default is "true".- Gibt zurück:
- the auto marked time interval property
- Siehe auch:
-
isAutoMarkedTimeInterval
public final boolean isAutoMarkedTimeInterval()Returns the value ofautoMarkedTimeIntervalProperty().- Gibt zurück:
- true if the marked time interval gets updated automatically
-
setAutoMarkedTimeInterval
public final void setAutoMarkedTimeInterval(boolean auto) Sets the value ofautoMarkedTimeIntervalProperty().- Parameter:
auto- if true, the marked time interval will be updated automatically
-
maxGridLevelProperty
A property used to store the number of grid levels that the user wants to see in the graphics view. The value of this property must be between 1 and 5. The grid level depends on the number of scales shown by the dateline (seeDateline.getScaleResolutions()). If the dateline is currently showing two scales (e.g. days and weeks) then the graphics view and theGridLinesLayercan also display two different grid lines, for example a light gray one for days and a dark gray one for weeks.- Gibt zurück:
- the maximum number of grid levels
- Seit:
- 1.0
- Siehe auch:
-
getMaxGridLevel
public final int getMaxGridLevel()Returns the value ofmaxGridLevelProperty().- Gibt zurück:
- the maximum number of grid levels
- Seit:
- 1.0
-
setMaxGridLevel
public final void setMaxGridLevel(int max) Sets the value ofmaxGridLevelProperty().- Parameter:
max- the maximum number of grid levels, a value between 1 and 5- Seit:
- 1.0
-
showVerticalCursorProperty
A property used to control whether a vertical cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Gibt zurück:
- a property used for controlling the visibility of a vertical cursor line
- Seit:
- 1.0
- Siehe auch:
-
isShowVerticalCursor
public final boolean isShowVerticalCursor()Returns the value ofshowVerticalCursorProperty().- Gibt zurück:
- true if the cursor will be shown
- Seit:
- 1.0
-
setShowVerticalCursor
public final void setShowVerticalCursor(boolean show) Sets the value ofshowVerticalCursorProperty().- Parameter:
show- if true, a vertical cursor line will be shown- Seit:
- 1.0
-
showHorizontalCursorProperty
A property used to control wether a horizontal cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Gibt zurück:
- a property used for controlling the visibility of a horizontal cursor line
- Seit:
- 1.0
- Siehe auch:
-
isShowHorizontalCursor
public final boolean isShowHorizontalCursor()Returns the value ofshowHorizontalCursorProperty().- Gibt zurück:
- true if the cursor will be shown
- Seit:
- 1.0
-
setShowHorizontalCursor
public final void setShowHorizontalCursor(boolean show) Sets the value ofshowHorizontalCursorProperty().- Parameter:
show- if true, a horizontal cursor line will be shown- Seit:
- 1.0
-
showMarkedTimeIntervalProperty
A property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).- Gibt zurück:
- a property used for controlling the visibility of a horizontal cursor line
- Seit:
- 1.1
- Siehe auch:
-
isShowMarkedTimeInterval
public final boolean isShowMarkedTimeInterval()Returns the value ofshowMarkedTimeIntervalProperty().- Gibt zurück:
- true if the marker lines will be shown
- Seit:
- 1.1
- Siehe auch:
-
setShowMarkedTimeInterval
public final void setShowMarkedTimeInterval(boolean show) Sets the value ofshowMarkedTimeIntervalProperty().- Parameter:
show- if true, marker lines will be drawn for the currently marked time interval- Seit:
- 1.1
- Siehe auch:
-
debugModeProperty
A property used to enable / disable the debug mode. The debug mode will cause the object bounds of activities to be rendered in the graphics view and also the bounds of the lasso selection tool. Other information might get added in the future.- Gibt zurück:
- a property used to enable / disable the debug mode
- Seit:
- 1.0
- Siehe auch:
-
isDebugMode
public final boolean isDebugMode()Returns the value ofdebugModeProperty().- Gibt zurück:
- true if the debug mode is enabled
- Seit:
- 1.0
-
setDebugMode
public final void setDebugMode(boolean debug) Sets the value ofdebugModeProperty().- Parameter:
debug- if true, the debug mode is enabled- Seit:
- 1.0
-
autoGridEnabledProperty
A property used to enable / disable the autogrid mode. The autogrid mode will cause activities to snap to times based on the currently shown granularity of the dateline. If the dateline is showing "days" then the activities will snap to the beginning and / or end of a day. If the dateline is showing hours then the activities will snap to full hours.- Gibt zurück:
- a property used to enable / disable the debug mode
- Seit:
- 1.1
- Siehe auch:
-
isAutoGridEnabled
public final boolean isAutoGridEnabled()Returns the value ofautoGridEnabledProperty().- Gibt zurück:
- true if the autogrid mode is enabled
- Seit:
- 1.1
-
setAutoGridEnabled
public final void setAutoGridEnabled(boolean auto) Sets the value ofautoGridEnabledProperty().- Parameter:
auto- if true, the autogrid mode is enabled- Seit:
- 1.1
-
gridEnabledProperty
A convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.- Gibt zurück:
- true if the graphics is using a grid for its editing operations
- Seit:
- 1.2
- Siehe auch:
-
isGridEnabled
public final boolean isGridEnabled()Returns the value ofgridEnabledProperty().- Gibt zurück:
- true if any kind of grid support is enabled
- Seit:
- 1.2
-
selectionModeProperty
A property used to store the currently supported selection mode. The graphics view supports single, multiple, and none.- Gibt zurück:
- the property used to store the selection mode
- Seit:
- 1.0
- Siehe auch:
-
getSelectionMode
Returns the value ofselectionModeProperty().- Gibt zurück:
- the currently used selection mode (single, all, none)
- Seit:
- 1.0
-
setSelectionMode
Sets the value ofselectionModeProperty().- Parameter:
mode- the new selection mode- Seit:
- 1.0
-
getSelectedActivities
Returns the list of currently selected activities.- Gibt zurück:
- the list of selected activities
- Seit:
- 1.0
-
lassoSelectionBehaviourProperty
A property used to store the currently used lasso selection behaviour. This value of this property controls when an activity is actually considered selected by the lasso: does it need to be completely inside the lasso bounds or is it enough when it gets touched by the lasso?- Gibt zurück:
- the property used to store the lasso selection behaviour
- Seit:
- 1.0
- Siehe auch:
-
setLassoSelectionBehaviour
Sets the value oflassoSelectionBehaviourProperty().- Parameter:
behaviour- the lasso selection behaviour to use- Seit:
- 1.0
-
getLassoSelectionBehaviour
Returns the value of thelassoSelectionBehaviourProperty().- Gibt zurück:
- the currently used lasso selection behaviour
- Seit:
- 1.0
-
getCalendars
Returns the list of calendars that are registered with the graphics view. Calendars are used to render static information in the background of each row. One example are the days that are considered weekend days (e.g. saturday and sunday). They will be drawn with a gray background.- Gibt zurück:
- the calendars drawn by the graphics view
- Seit:
- 1.0
- Siehe auch:
-
showEarliestActivities
public final void showEarliestActivities()Makes theTimelinestart with the earliest time used by the currently loaded rows.- Seit:
- 1.0
- Siehe auch:
-
showLatestActivities
public final void showLatestActivities()Makes theTimelineshow the latest time used by the currently loaded rows.- Seit:
- 1.0
- Siehe auch:
-
showAllActivities
public final void showAllActivities()Makes theTimelineshow a time range starting with the earliest time used and ending with the latest time used by all currently loaded rows.- Seit:
- 1.0
- Siehe auch:
-
getEarliestTimeUsed
Calculates and returns the earliest time used by all rows in the model.- Gibt zurück:
- the earliest time used by the graphics view
- Seit:
- 1.0
- Siehe auch:
-
getLatestTimeUsed
Calculates and returns the latest time used by all rows in the model.- Gibt zurück:
- the latest time used by the graphics view
- Seit:
- 1.0
- Siehe auch:
-
hoverActivityProperty
- Gibt zurück:
- die Eigenschaft
hoverActivity - Siehe auch:
-
getHoverActivity
Ruft den Wert derhoverActivity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
hoverActivity - Siehe auch:
-
hoverRowProperty
- Gibt zurück:
- die Eigenschaft
hoverRow - Siehe auch:
-
getHoverRow
Ruft den Wert derhoverRow-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
hoverRow - Siehe auch:
-
hoverLayoutProperty
- Gibt zurück:
- die Eigenschaft
hoverLayout - Siehe auch:
-
getHoverLayout
Ruft den Wert derhoverLayout-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
hoverLayout - Siehe auch:
-
editedActivityProperty
- Gibt zurück:
- die Eigenschaft
editedActivity - Siehe auch:
-
getEditedActivity
Ruft den Wert dereditedActivity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
editedActivity - Siehe auch:
-
pressedActivityProperty
- Gibt zurück:
- die Eigenschaft
pressedActivity - Siehe auch:
-
getPressedActivity
Ruft den Wert derpressedActivity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
pressedActivity - Siehe auch:
-
virtualGridProperty
- Gibt zurück:
- die Eigenschaft
virtualGrid - Siehe auch:
-
getVirtualGrid
Ruft den Wert dervirtualGrid-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
virtualGrid - Siehe auch:
-
setVirtualGrid
Legt den Wert dervirtualGrid-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
grid- Wert für die EigenschaftvirtualGrid- Siehe auch:
-
getVirtualGrids
-
placeholderProperty
- Gibt zurück:
- die Eigenschaft
placeholder - Siehe auch:
-
getPlaceholder
Ruft den Wert derplaceholder-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
placeholder - Siehe auch:
-
setPlaceholder
Legt den Wert derplaceholder-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
node- Wert für die Eigenschaftplaceholder- Siehe auch:
-
getRowPanes
-
redraw
public void redraw()Performs a redraw of the displayed activities. Also lays out the links shown by theLinksCanvas. -
redraw
Performs a redraw of the displayed activities and logs the given reason. Also lays out the links shown by theLinksCanvas. -
redrawImmediately
public void redrawImmediately()Forces an immediate redraw of all rows.- Seit:
- 11.12.3
- Siehe auch:
-
drawLinks
Performs a redraw of the displayed links and logs the given reason. -
getAllActivityRenderers
Returns a list of all currently registered activity renderers.- Gibt zurück:
- all activity renderers
- Seit:
- 8.9.0
-
setActivityRenderer
public final <A extends Activity> void setActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType, ActivityRenderer<? extends A> renderer) Registers a renderer for the given activity and layout type. The renderer will be used to "draw" any activity of the given type when the activity is laid out via the given layout.- Typparameter:
A- the type of the activity- Parameter:
activityType- the type of the activitylayoutType- the type of the layoutrenderer- the renderer instance
-
getActivityRenderer
public final <A extends Activity> ActivityRenderer<? extends A> getActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType) -
setLinkRenderer
Sets a custom link renderer for the given type of activity link.- Parameter:
clazz- the activity typerenderer- the renderer
-
getLinkRenderer
Returns a renderer for the given activity link type.- Typparameter:
AL- the activity link type- Parameter:
clazz- the activity link type- Gibt zurück:
- the link renderer
-
setActivityEditingCallback
public final void setActivityEditingCallback(Class<? extends MutableActivity> activityType, Callback<GraphicsBase.EditingCallbackParameter, Boolean> callback) Registers a callback used to determine if a given editing operation can be used for a given activity.- Parameter:
activityType- the type of the activity for which to use the callbackcallback- the callback- Seit:
- 1.0
-
getActivityEditingCallback
public final <A extends Activity> Callback<GraphicsBase.EditingCallbackParameter, Boolean> getActivityEditingCallback(Class<A> activityType) -
setRowDragAndDropCallback
public final void setRowDragAndDropCallback(Class<? extends Row> rowType, Callback<GraphicsBase.DragAndDropInfo, Boolean> callback) Specifies a callback that will be invoked when the user drags an activity over a row of the given type. The callback implementation then determines if a drop would be accepted in the given row.- Parameter:
rowType- the type of the row for which the callback gets registeredcallback- the callback implementation- Seit:
- 1.0
-
getRowDragAndDropCallback
public final Callback<GraphicsBase.DragAndDropInfo, Boolean> getRowDragAndDropCallback(Class<? extends Row> rowType) Returns a callback that will be invoked when the user drags an activity over a row of the given type. The callback implementation then determines if a drop would be accepted in the given row.- Parameter:
rowType- the type of the row for which the callback gets registered- Gibt zurück:
- the callback implementation
- Seit:
- 1.0
-
dragAndDropInfoProperty
A property used to store the current drag and drop information. This object stores data relevant to the current drag and drop operation.- Gibt zurück:
- the property used to store the current drag and drop information
- Seit:
- 1.0
- Siehe auch:
-
getDragAndDropInfo
Returns the value ofdragAndDropInfoProperty().- Gibt zurück:
- the current drag and drop information
- Seit:
- 1.0
-
dragImageProviderProperty
- Gibt zurück:
- die Eigenschaft
dragImageProvider - Siehe auch:
-
setDragImageProvider
Legt den Wert derdragImageProvider-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
provider- Wert für die EigenschaftdragImageProvider- Siehe auch:
-
getDragImageProvider
Ruft den Wert derdragImageProvider-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
dragImageProvider - Siehe auch:
-
getBackgroundSystemLayer
-
getForegroundSystemLayer
-
getSystemLayer
-
getBackgroundSystemLayers
-
getForegroundSystemLayers
-
showAgendaLinesLayerProperty
- Gibt zurück:
- die Eigenschaft
showAgendaLinesLayer - Siehe auch:
-
setShowAgendaLinesLayer
public final void setShowAgendaLinesLayer(boolean show) Legt den Wert dershowAgendaLinesLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowAgendaLinesLayer- Siehe auch:
-
isShowAgendaLinesLayer
public final boolean isShowAgendaLinesLayer()Ruft den Wert dershowAgendaLinesLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showAgendaLinesLayer - Siehe auch:
-
showCalendarLayerProperty
- Gibt zurück:
- die Eigenschaft
showCalendarLayer - Siehe auch:
-
setShowCalendarLayer
public final void setShowCalendarLayer(boolean show) Legt den Wert dershowCalendarLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowCalendarLayer- Siehe auch:
-
isShowCalendarLayer
public final boolean isShowCalendarLayer()Ruft den Wert dershowCalendarLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showCalendarLayer - Siehe auch:
-
showLayoutLayerProperty
- Gibt zurück:
- die Eigenschaft
showLayoutLayer - Siehe auch:
-
setShowLayoutLayer
public final void setShowLayoutLayer(boolean show) Legt den Wert dershowLayoutLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowLayoutLayer- Siehe auch:
-
isShowLayoutLayer
public final boolean isShowLayoutLayer()Ruft den Wert dershowLayoutLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showLayoutLayer - Siehe auch:
-
showChartLinesLayerProperty
- Gibt zurück:
- die Eigenschaft
showChartLinesLayer - Siehe auch:
-
setShowChartLinesLayer
public final void setShowChartLinesLayer(boolean show) Legt den Wert dershowChartLinesLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowChartLinesLayer- Siehe auch:
-
isShowChartLinesLayer
public final boolean isShowChartLinesLayer()Ruft den Wert dershowChartLinesLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showChartLinesLayer - Siehe auch:
-
showGridLineLayerProperty
- Gibt zurück:
- die Eigenschaft
showGridLineLayer - Siehe auch:
-
setShowGridLineLayer
public final void setShowGridLineLayer(boolean show) Legt den Wert dershowGridLineLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowGridLineLayer- Siehe auch:
-
isShowGridLineLayer
public final boolean isShowGridLineLayer()Ruft den Wert dershowGridLineLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showGridLineLayer - Siehe auch:
-
showHoverTimeIntervalLayerProperty
- Gibt zurück:
- die Eigenschaft
showHoverTimeIntervalLayer - Siehe auch:
-
setShowHoverTimeIntervalLayer
public final void setShowHoverTimeIntervalLayer(boolean show) Legt den Wert dershowHoverTimeIntervalLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowHoverTimeIntervalLayer- Siehe auch:
-
isShowHoverTimeIntervalLayer
public final boolean isShowHoverTimeIntervalLayer()Ruft den Wert dershowHoverTimeIntervalLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showHoverTimeIntervalLayer - Siehe auch:
-
showInnerLinesLayerProperty
- Gibt zurück:
- die Eigenschaft
showInnerLinesLayer - Siehe auch:
-
setShowInnerLinesLayer
public final void setShowInnerLinesLayer(boolean show) Legt den Wert dershowInnerLinesLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowInnerLinesLayer- Siehe auch:
-
isShowInnerLinesLayer
public final boolean isShowInnerLinesLayer()Ruft den Wert dershowInnerLinesLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showInnerLinesLayer - Siehe auch:
-
showNowLineLayerProperty
- Gibt zurück:
- die Eigenschaft
showNowLineLayer - Siehe auch:
-
setShowNowLineLayer
public final void setShowNowLineLayer(boolean show) Legt den Wert dershowNowLineLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowNowLineLayer- Siehe auch:
-
isShowNowLineLayer
public final boolean isShowNowLineLayer()Ruft den Wert dershowNowLineLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showNowLineLayer - Siehe auch:
-
showDSTLineLayerProperty
- Gibt zurück:
- die Eigenschaft
showDSTLineLayer - Siehe auch:
-
setShowDSTLineLayer
public final void setShowDSTLineLayer(boolean show) Legt den Wert dershowDSTLineLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowDSTLineLayer- Siehe auch:
-
isShowDSTLineLayer
public final boolean isShowDSTLineLayer()Ruft den Wert dershowDSTLineLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showDSTLineLayer - Siehe auch:
-
showRowLayerProperty
- Gibt zurück:
- die Eigenschaft
showRowLayer - Siehe auch:
-
setShowRowLayer
public final void setShowRowLayer(boolean show) Legt den Wert dershowRowLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowRowLayer- Siehe auch:
-
isShowRowLayer
public final boolean isShowRowLayer()Ruft den Wert dershowRowLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showRowLayer - Siehe auch:
-
showSelectedTimeIntervalsLayerProperty
- Gibt zurück:
- die Eigenschaft
showSelectedTimeIntervalsLayer - Siehe auch:
-
setShowSelectedTimeIntervalsLayer
public final void setShowSelectedTimeIntervalsLayer(boolean show) Legt den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowSelectedTimeIntervalsLayer- Siehe auch:
-
isShowSelectedTimeIntervalsLayer
public final boolean isShowSelectedTimeIntervalsLayer()Ruft den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showSelectedTimeIntervalsLayer - Siehe auch:
-
showZoomTimeIntervalLayerProperty
- Gibt zurück:
- die Eigenschaft
showZoomTimeIntervalLayer - Siehe auch:
-
setShowZoomTimeIntervalLayer
public final void setShowZoomTimeIntervalLayer(boolean show) Legt den Wert dershowZoomTimeIntervalLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowZoomTimeIntervalLayer- Siehe auch:
-
isShowZoomTimeIntervalLayer
public final boolean isShowZoomTimeIntervalLayer()Ruft den Wert dershowZoomTimeIntervalLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showZoomTimeIntervalLayer - Siehe auch:
-
showZoneIdProperty
- Gibt zurück:
- die Eigenschaft
showZoneId - Siehe auch:
-
setShowZoneId
public final void setShowZoneId(boolean show) Legt den Wert dershowZoneId-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftshowZoneId- Siehe auch:
-
isShowZoneId
public final boolean isShowZoneId()Ruft den Wert dershowZoneId-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
showZoneId - Siehe auch:
-
fadeInOutVisibilityChangesProperty
- Gibt zurück:
- die Eigenschaft
fadeInOutVisibilityChanges - Siehe auch:
-
isFadeInOutVisibilityChanges
public final boolean isFadeInOutVisibilityChanges()Ruft den Wert derfadeInOutVisibilityChanges-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
fadeInOutVisibilityChanges - Siehe auch:
-
setFadeInOutVisibilityChanges
public final void setFadeInOutVisibilityChanges(boolean show) Legt den Wert derfadeInOutVisibilityChanges-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
show- Wert für die EigenschaftfadeInOutVisibilityChanges- Siehe auch:
-
fadeInOutVisibilityChangesDurationProperty
- Gibt zurück:
- die Eigenschaft
fadeInOutVisibilityChangesDuration - Siehe auch:
-
getFadeInOutVisibilityChangesDuration
public final double getFadeInOutVisibilityChangesDuration()Ruft den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
fadeInOutVisibilityChangesDuration - Siehe auch:
-
setFadeInOutVisibilityChangesDuration
public final void setFadeInOutVisibilityChangesDuration(double duration) Legt den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
duration- Wert für die EigenschaftfadeInOutVisibilityChangesDuration- Siehe auch:
-
isShowLinks
public final boolean isShowLinks()Ruft den Wert dershowLinks-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Controls whether the
LinksCanvaswill be visible and links will be drawn. - Gibt zurück:
- Wert der Eigenschaft
showLinks - Siehe auch:
-
showLinksProperty
Controls whether theLinksCanvaswill be visible and links will be drawn.- Gibt zurück:
- true if the links will be drawn
- Siehe auch:
-
setShowLinks
public final void setShowLinks(boolean showLinks) Legt den Wert dershowLinks-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Controls whether the
LinksCanvaswill be visible and links will be drawn. - Parameter:
showLinks- Wert für die EigenschaftshowLinks- Siehe auch:
-
dragAndDropFeedbackProperty
- Gibt zurück:
- die Eigenschaft
dragAndDropFeedback - Siehe auch:
-
setDragAndDropFeedback
Legt den Wert derdragAndDropFeedback-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
feedback- Wert für die EigenschaftdragAndDropFeedback- Siehe auch:
-
getDragAndDropFeedback
Ruft den Wert derdragAndDropFeedback-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
dragAndDropFeedback - Siehe auch:
-
rowControlsFactoryProperty
public final ObjectProperty<Callback<GraphicsBase.RowControlsParameter<R>, Node>> rowControlsFactoryProperty()- Gibt zurück:
- die Eigenschaft
rowControlsFactory - Siehe auch:
-
setRowControlsFactory
public final void setRowControlsFactory(Callback<GraphicsBase.RowControlsParameter<R>, Node> factory) Legt den Wert derrowControlsFactory-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
factory- Wert für die EigenschaftrowControlsFactory- Siehe auch:
-
getRowControlsFactory
Ruft den Wert derrowControlsFactory-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
rowControlsFactory - Siehe auch:
-
enableRowResizingProperty
Controls whether the view allows the user to interactively resize the row / change the row height.- Gibt zurück:
- true if the rows can be resized
- Seit:
- 11.12.0
- Siehe auch:
-
isEnableRowResizing
public final boolean isEnableRowResizing()Ruft den Wert derenableRowResizing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Controls whether the view allows the user to interactively resize the row / change the row height.
- Gibt zurück:
- Wert der Eigenschaft
enableRowResizing - Seit:
- 11.12.0
- Siehe auch:
-
setEnableRowResizing
public final void setEnableRowResizing(boolean enableRowResizing) Legt den Wert derenableRowResizing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Controls whether the view allows the user to interactively resize the row / change the row height.
- Parameter:
enableRowResizing- Wert für die EigenschaftenableRowResizing- Seit:
- 11.12.0
- Siehe auch:
-
rowHeaderFactoryProperty
public final ObjectProperty<Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>>> rowHeaderFactoryProperty()A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.- Gibt zurück:
- the row header node callback property
- Seit:
- 11.11.0
- Siehe auch:
-
setRowHeaderFactory
Sets the value ofrowHeaderFactoryProperty().- Parameter:
factory- the factory used for creating the row header nodes- Seit:
- 11.11.0
-
getRowHeaderFactory
Returns the value ofrowHeaderFactoryProperty().- Gibt zurück:
- the row header nodes factory
- Seit:
- 11.11.0
-
showRowHeadersProperty
Determines if the row headers will be shown to the user or not.- Gibt zurück:
- true if the row headers will be visible
- Seit:
- 11.11.0
- Siehe auch:
-
isShowRowHeaders
public final boolean isShowRowHeaders()Ruft den Wert dershowRowHeaders-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Determines if the row headers will be shown to the user or not.
- Gibt zurück:
- Wert der Eigenschaft
showRowHeaders - Seit:
- 11.11.0
- Siehe auch:
-
setShowRowHeaders
public final void setShowRowHeaders(boolean showRowHeaders) Legt den Wert dershowRowHeaders-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Determines if the row headers will be shown to the user or not.
- Parameter:
showRowHeaders- Wert für die EigenschaftshowRowHeaders- Seit:
- 11.11.0
- Siehe auch:
-
rowHeadersWidthProperty
Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.- Gibt zurück:
- the width in pixels used for all row headers
- Seit:
- 11.11.0
- Siehe auch:
-
getRowHeadersWidth
public final double getRowHeadersWidth()Ruft den Wert derrowHeadersWidth-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.
- Gibt zurück:
- Wert der Eigenschaft
rowHeadersWidth - Seit:
- 11.11.0
- Siehe auch:
-
setRowHeadersWidth
public final void setRowHeadersWidth(double rowHeadersWidth) Legt den Wert derrowHeadersWidth-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.
- Parameter:
rowHeadersWidth- Wert für die EigenschaftrowHeadersWidth- Seit:
- 11.11.0
- Siehe auch:
-
rowEditorFactoryProperty
public final ObjectProperty<Callback<GraphicsBase.RowEditorParameter<R>, Node>> rowEditorFactoryProperty()- Gibt zurück:
- die Eigenschaft
rowEditorFactory - Siehe auch:
-
setRowEditorFactory
Legt den Wert derrowEditorFactory-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
factory- Wert für die EigenschaftrowEditorFactory- Siehe auch:
-
getRowEditorFactory
Ruft den Wert derrowEditorFactory-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
rowEditorFactory - Siehe auch:
-
rowEditingModeProperty
- Gibt zurück:
- die Eigenschaft
rowEditingMode - Siehe auch:
-
setRowEditingMode
Legt den Wert derrowEditingMode-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
mode- Wert für die EigenschaftrowEditingMode- Siehe auch:
-
getRowEditingMode
Ruft den Wert derrowEditingMode-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
rowEditingMode - Siehe auch:
-
getRowsEditing
-
stopRowEditing
public final void stopRowEditing() -
stopRowEditing
-
startRowEditing
-
animateRowEditorProperty
- Gibt zurück:
- die Eigenschaft
animateRowEditor - Siehe auch:
-
setAnimateRowEditor
public final void setAnimateRowEditor(boolean animate) Legt den Wert deranimateRowEditor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
animate- Wert für die EigenschaftanimateRowEditor- Siehe auch:
-
isAnimateRowEditor
public final boolean isAnimateRowEditor()Ruft den Wert deranimateRowEditor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
animateRowEditor - Siehe auch:
-
setEditModeCallback
public final void setEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType, Callback<GraphicsBase.EditModeCallbackParameter, GraphicsBase.EditMode> callback) -
getEditModeCallback
public final Callback<GraphicsBase.EditModeCallbackParameter, GraphicsBase.EditMode> getEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType) -
dropLayerProviderProperty
public final ObjectProperty<Callback<GraphicsBase.DragAndDropInfo, Layer>> dropLayerProviderProperty()A property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished. The default provider returns the layer on which the activity is currently shown.- Gibt zurück:
- a property used to store the drop layer provider
- Seit:
- 1.2
- Siehe auch:
-
getDropLayerProvider
Returns the value ofdropLayerProviderProperty().- Gibt zurück:
- the drop layer provider used for DnD operations
- Seit:
- 1.2
-
setDropLayerProvider
Sets the value ofdropLayerProviderProperty().- Parameter:
provider- the drop layer provider used for DnD operations- Seit:
- 1.2
-
horizontalDragEnabledProperty
Determines whether the user can perform a horizontal drag with a mouse drag.- Gibt zurück:
- true if the visible time range can be changed via a mouse drag
- Seit:
- 1.3
- Siehe auch:
-
setHorizontalDragEnabled
public final void setHorizontalDragEnabled(boolean enabled) Sets the value ofhorizontalDragEnabledProperty().- Parameter:
enabled- if true, the user can perform horizontal scrolling
-
isHorizontalDragEnabled
public final boolean isHorizontalDragEnabled()Returns the value ofhorizontalDragEnabledProperty().- Gibt zurück:
- true if the user can perform horizontal scrolling
-
safeRenderingProperty
Returns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).Using save / restore will ensure that the pluggable system layers and activity renderers will not have any side effects on each other. Setting this property to true has an impact on performance. The default value of this property is false.
Example
The following code shows how the property is used within the framework.GraphicsContext gc = canvas.getGraphicsContext2D(); if (graphics.isSafeRendering()) { gc.save(); } gc.setTransform(...); gc.strokeLine(...); if (graphics.isSafeRendering()) { gc.restore(); }- Gibt zurück:
- the property to control safe rendering
- Siehe auch:
-
setSafeRendering
public final void setSafeRendering(boolean safe) Sets the value ofsafeRenderingProperty().- Parameter:
safe- if true, the safe rendering mode will be used (the graphics context state will be saved before invoking renderers or drawing system layers).
-
isSafeRendering
public final boolean isSafeRendering()Returns the value ofsafeRenderingProperty().- Gibt zurück:
- "true" if the safe rendering mode will be used (the graphics context state will be saved before invoking renderers or drawing system layers).
-
gridLineColor1Property
- Gibt zurück:
- die Eigenschaft
gridLineColor1 - Siehe auch:
-
getGridLineColor1
Ruft den Wert dergridLineColor1-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
gridLineColor1 - Siehe auch:
-
setGridLineColor1
Legt den Wert dergridLineColor1-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
color- Wert für die EigenschaftgridLineColor1- Siehe auch:
-
gridLineColor2Property
- Gibt zurück:
- die Eigenschaft
gridLineColor2 - Siehe auch:
-
getGridLineColor2
Ruft den Wert dergridLineColor2-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
gridLineColor2 - Siehe auch:
-
setGridLineColor2
Legt den Wert dergridLineColor2-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
color- Wert für die EigenschaftgridLineColor2- Siehe auch:
-
gridLineColor3Property
- Gibt zurück:
- die Eigenschaft
gridLineColor3 - Siehe auch:
-
getGridLineColor3
Ruft den Wert dergridLineColor3-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
gridLineColor3 - Siehe auch:
-
setGridLineColor3
Legt den Wert dergridLineColor3-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
color- Wert für die EigenschaftgridLineColor3- Siehe auch:
-
weekendColorProperty
- Gibt zurück:
- die Eigenschaft
weekendColor - Siehe auch:
-
getWeekendColor
Ruft den Wert derweekendColor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
weekendColor - Siehe auch:
-
setWeekendColor
Legt den Wert derweekendColor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
color- Wert für die EigenschaftweekendColor- Siehe auch:
-
timeNowColorProperty
- Gibt zurück:
- die Eigenschaft
timeNowColor - Siehe auch:
-
getTimeNowColor
Ruft den Wert dertimeNowColor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
timeNowColor - Siehe auch:
-
setTimeNowColor
Legt den Wert dertimeNowColor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
color- Wert für die EigenschafttimeNowColor- Siehe auch:
-
innerLinesColorProperty
- Gibt zurück:
- die Eigenschaft
innerLinesColor - Siehe auch:
-
getInnerLinesColor
Ruft den Wert derinnerLinesColor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Gibt zurück:
- Wert der Eigenschaft
innerLinesColor - Siehe auch:
-
setInnerLinesColor
Legt den Wert derinnerLinesColor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Parameter:
color- Wert für die EigenschaftinnerLinesColor- Siehe auch:
-
getClassCssMetaData
-
getControlCssMetaData
- Setzt außer Kraft:
getControlCssMetaDatain KlasseControl
-