Uses of Class
org.eclipse.nebula.widgets.ganttchart.GanttSection
-
Uses of GanttSection in org.eclipse.nebula.widgets.ganttchart
Methods in org.eclipse.nebula.widgets.ganttchart that return GanttSection Modifier and Type Method Description GanttSection
GanttEvent. getGanttSection()
Returns theGanttSection
that this event belongs to, or null if none.GanttSection
GanttComposite. getSectionAt(org.eclipse.swt.events.MouseEvent me)
Returns a section that corresponds to where the given MouseEvent is firedMethods in org.eclipse.nebula.widgets.ganttchart with parameters of type GanttSection Modifier and Type Method Description void
GanttComposite. addSection(GanttSection section)
Adds a GanttSection to the chart.void
GanttComposite. addSection(GanttSection section, int index)
Adds a GanttSection to the chart.GanttEvent
DefaultEventFactory. createGanttEvent(GanttChart parent, GanttSection gs, java.lang.String name, java.util.Calendar start, java.util.Calendar end)
GanttEvent
IEventFactory. createGanttEvent(GanttChart parent, GanttSection gs, java.lang.String name, java.util.Calendar start, java.util.Calendar end)
Creates a new GanttEvent and adds it to the given GanttChart.void
GanttEventListenerAdapter. eventMovedToNewSection(GanttEvent ge, GanttSection oldSection, GanttSection newSection)
void
IGanttEventListener. eventMovedToNewSection(GanttEvent event, GanttSection oldSection, GanttSection newSection)
This is called when an event is moved (vertical DND) from one section to another.org.eclipse.swt.graphics.Color
AbstractColorManager. getSectionDetailAreaBackgroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
IColorManager. getSectionDetailAreaBackgroundColor(GanttSection section)
The background color used to draw the gradient background of the section detail area of the given GanttSection.org.eclipse.swt.graphics.Color
AbstractColorManager. getSectionDetailAreaForegroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
IColorManager. getSectionDetailAreaForegroundColor(GanttSection section)
The foreground color used to draw the gradient background of the section detail area of the given GanttSection.void
ISectionDetailMoreClickListener. openAdvancedDetails(GanttSection section)
Make the advanced detail information of a GanttSection visible.void
GanttComposite. reindex(GanttSection section, int newIndex)
Re-indexes a GanttSection to a new index.void
GanttComposite. removeSection(GanttSection section)
Removes a GanttSection from the chart.void
GanttEvent. reparentToNewGanttSection(int index, GanttSection newSection)
Reparents this event from the currentGanttSection
to a newGanttSection
java.lang.String
ISectionDetailContentReplacer. replaceSectionDetailPlaceHolder(GanttSection section, java.lang.String sectionDetailPattern)
(package private) void
GanttEvent. setGanttSection(GanttSection ganttSection)
Sets the GanttSection that this event belongs to -
Uses of GanttSection in org.eclipse.nebula.widgets.ganttchart.dnd
Methods in org.eclipse.nebula.widgets.ganttchart.dnd that return GanttSection Modifier and Type Method Description GanttSection
VerticalDragDropManager. getTargetSection()
Methods in org.eclipse.nebula.widgets.ganttchart.dnd with parameters of type GanttSection Modifier and Type Method Description void
VerticalDragDropManager. setTargetSection(GanttSection targetSection)
-
Uses of GanttSection in org.eclipse.nebula.widgets.ganttchart.themes
Methods in org.eclipse.nebula.widgets.ganttchart.themes with parameters of type GanttSection Modifier and Type Method Description org.eclipse.swt.graphics.Color
ColorThemeGrayBlue. getSectionDetailAreaBackgroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeHighContrastBlack. getSectionDetailAreaBackgroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeSilver. getSectionDetailAreaBackgroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeWindowsBlue. getSectionDetailAreaBackgroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeGrayBlue. getSectionDetailAreaForegroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeHighContrastBlack. getSectionDetailAreaForegroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeSilver. getSectionDetailAreaForegroundColor(GanttSection section)
org.eclipse.swt.graphics.Color
ColorThemeWindowsBlue. getSectionDetailAreaForegroundColor(GanttSection section)
-
Uses of GanttSection in org.eclipse.nebula.widgets.ganttchart.undoredo.commands
Methods in org.eclipse.nebula.widgets.ganttchart.undoredo.commands that return GanttSection Modifier and Type Method Description GanttSection
EventDeleteCommand. getSection()
GanttSection
SectionDeleteCommand. getSection()
GanttSection
EventMoveCommand. getSectionAfter()
GanttSection
EventMoveCommand. getSectionBefore()
Methods in org.eclipse.nebula.widgets.ganttchart.undoredo.commands with parameters of type GanttSection Modifier and Type Method Description void
EventDeleteCommand. setSection(GanttSection section)
void
SectionDeleteCommand. setSection(GanttSection section)
void
EventMoveCommand. setSectionAfter(GanttSection sectionAfter)
void
EventMoveCommand. setSectionBefore(GanttSection sectionBefore)
Constructors in org.eclipse.nebula.widgets.ganttchart.undoredo.commands with parameters of type GanttSection Constructor Description EventDeleteCommand(GanttEvent event, GanttSection section, int index)
Creates a new undoable/redoable delete Event.EventMoveCommand(GanttEvent event, java.util.Calendar startDateBefore, java.util.Calendar startDateAfter, java.util.Calendar endDateBefore, java.util.Calendar endDateAfter, java.util.Calendar revisedStartDateBefore, java.util.Calendar revisedStartDateAfter, java.util.Calendar revisedEndDateBefore, java.util.Calendar revisedEndDateAfter, GanttSection sectionBefore, GanttSection sectionAfter, int indexBefore, int indexAfter)
Creates a new undoable/redoable Move Event.SectionDeleteCommand(GanttSection section, int index)
Creates a new undoable/redoable delete Event.