Exemplo n.º 1
0
 public ReportWindow(TimerEngine t, WorkWinderDisplay d, FileMechanism f)
 {
     InitializeComponent();
     DISPLAY    = d;
     FILEMECH   = f;
     TIMEENGINE = t;
     initializeWindow();
 }
Exemplo n.º 2
0
 public WorkWinderDisplay()
 {
     InitializeComponent();
     initializeTimers();
     theme = new xColors();
     initializeColors();
     initializeTLP(ref baseTLP);
     TIMEENGINE = new TimerEngine(this, FILEMECH);
     FILEMECH   = new FileMechanism(TIMEENGINE, this);
     CONFDIS    = new ReportWindow(TIMEENGINE, this, FILEMECH);
 }
Exemplo n.º 3
0
 public TimerEngine(WorkWinderDisplay w, FileMechanism f)
 {
     DISPLAY  = w;
     FILEMECH = new FileMechanism(this, DISPLAY);
     for (int i = 0; i < StaticUtility.maximumRows; i++)
     {
         activeTimeArray[i] = new TimeSpan(0, 0, 0);
     }
     initializeTimers();
     engineInitialized();
 }