BrightSide Workbench Full Report + Source Code
org.turro.erp.task.usage.WorkloadGantt Class Reference
Inheritance diagram for org.turro.erp.task.usage.WorkloadGantt:
Collaboration diagram for org.turro.erp.task.usage.WorkloadGantt:

Public Member Functions

 WorkloadGantt ()
 
String getSelectItem ()
 
void setSelectItem (String selectItem)
 
double getScale ()
 
void setScale (double scale)
 
void reload ()
 
void afterCompose ()
 
void repaint ()
 
- Public Member Functions inherited from org.turro.zkoss.svg.GanttResource
GanttResourceData getData ()
 
void setData (GanttResourceData data)
 
void rule (int units)
 
void startComposing (String onUserEvent, String width, String height, double scale)
 
- Public Member Functions inherited from org.turro.zkoss.svg.Svg
void example ()
 
void generateContent (Map args)
 
void clear ()
 
void circle (int x, int y, int r)
 
void circle (int x, int y, int r, double opacity)
 
void circle (int x, int y, int r, String stroke, String strokeWidth, String fill, double opacity)
 
void line (int x1, int y1, int x2, int y2, String stroke, String strokeWidth)
 
void line (int x1, int y1, int x2, int y2, String stroke, String strokeWidth, double opacity)
 
void rectangle (int x, int y, int width, int height, String fill)
 
void rectangle (int x, int y, int width, int height, String fill, double opacity)
 
void rectangle (int x, int y, int width, int height, String fill, double opacity, String tooltip)
 
void roundRectangle (int x, int y, int width, int height, String fill)
 
void roundRectangle (int x, int y, int width, int height, String fill, double opacity)
 
void roundRectangle (int x, int y, int width, int height, String fill, double opacity, String tooltip)
 
void roundRectangle (int x, int y, int rx, int ry, int width, int height, String fill, double opacity)
 
void roundRectangle (int x, int y, int rx, int ry, int width, int height, String fill, double opacity, String tooltip)
 
void text (String text, int x, int y)
 
void text (String text, int x, int y, String tooltip)
 
void span (int x, int y, int width, int height, String fill, double opacity)
 
void roundSpan (int x, int y, int width, int height, String fill, double opacity)
 
void shadowedSpan (int x, int y, int width, int height, String fill, double opacity)
 
void shadowedRoundSpan (int x, int y, int width, int height, String fill, double opacity)
 
void shadowedLine (int x1, int y1, int x2, int y2, String stroke, String strokeWidth, double opacity)
 
void shadowedRectangle (int x, int y, int width, int height, String fill, double opacity)
 
void shadowedRoundRectangle (int x, int y, int width, int height, String fill, double opacity, String tooltip)
 
void setForceStyle (String forceStyle)
 
void setForceTransform (String forceTransform)
 
void setClickElementData (String clickElementData)
 
HTMLGenerator writeSeparator ()
 
HTMLGenerator writeNewLine ()
 
HTMLGenerator writeHorizontalStrut (int pixels)
 
HTMLGenerator write (String value)
 
HTMLGenerator startTag (String tag, String[] attributes)
 
HTMLGenerator startTag (String tag, String attributes)
 
HTMLGenerator startTag (String tag)
 
HTMLGenerator startTableRow (String[] attributes)
 
HTMLGenerator startTableRow (String attributes)
 
HTMLGenerator startTableCol (String[] attributes)
 
HTMLGenerator startTableCol (String attributes)
 
HTMLGenerator startTable (String[] attributes)
 
HTMLGenerator startTable (String attributes)
 
HTMLGenerator startJavaScript ()
 
HTMLGenerator startExtAnchor (String url, String hint)
 
HTMLGenerator startCSS ()
 
HTMLGenerator startAnchor (String url, String hint, String cssClass, String onClick)
 
HTMLGenerator startAnchor (String url, String hint, String cssClass)
 
HTMLGenerator startAnchor (String url, String hint)
 
void setOut (Writer out)
 
HTMLGenerator endTag (String tag)
 
HTMLGenerator endTag ()
 
HTMLGenerator endTableRow ()
 
HTMLGenerator endTableCol ()
 
HTMLGenerator endTable ()
 
HTMLGenerator endJavaScript ()
 
HTMLGenerator endCSS ()
 
HTMLGenerator endBeforeTag (String tag)
 
HTMLGenerator endAllTags ()
 
HTMLGenerator doTag (String tag, String[] attributes)
 
HTMLGenerator doTag (String tag, String attributes)
 
HTMLGenerator doTag (String tag)
 
boolean checkTag (String tag)
 
HTMLGenerator addJavaScriptLink (String jsFile)
 
HTMLGenerator addCSSLink (String cssFile)
 

Detailed Description

Constructor & Destructor Documentation

◆ WorkloadGantt()

org.turro.erp.task.usage.WorkloadGantt.WorkloadGantt ( )

Member Function Documentation

◆ afterCompose()

void org.turro.erp.task.usage.WorkloadGantt.afterCompose ( )

Definition at line 70 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

Here is the call graph for this function:

◆ getScale()

double org.turro.erp.task.usage.WorkloadGantt.getScale ( )

Definition at line 56 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

56  {
57  return scale;
58  }

◆ getSelectItem()

String org.turro.erp.task.usage.WorkloadGantt.getSelectItem ( )

Definition at line 48 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

48  {
49  return selectItem;
50  }

◆ reload()

void org.turro.erp.task.usage.WorkloadGantt.reload ( )

Definition at line 64 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

64  {
65  loadData();
66  repaint();
67  }
Here is the call graph for this function:

◆ repaint()

void org.turro.erp.task.usage.WorkloadGantt.repaint ( )

Definition at line 75 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

75  {
76  setVisible(false);
77  getChildren().clear();
78  clear();
79  startComposing(selectItem, null, null, scale);
80  generateContent(null);
81  setVisible(true);
82  }
void startComposing(String onUserEvent, String width, String height, double scale)
void generateContent(Map args)
Definition: Svg.java:73
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setScale()

void org.turro.erp.task.usage.WorkloadGantt.setScale ( double  scale)

Definition at line 60 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

60  {
61  this.scale = scale;
62  }

◆ setSelectItem()

void org.turro.erp.task.usage.WorkloadGantt.setSelectItem ( String  selectItem)

Definition at line 52 of file bserp-www/src/main/java/org/turro/erp/task/usage/WorkloadGantt.java.

52  {
53  this.selectItem = selectItem;
54  }

The documentation for this class was generated from the following file: