Esempio n. 1
0
        private void cSVExportToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (saveFileDialog1.ShowDialog(this) != DialogResult.OK)
            {
                return;
            }

            int tableSize = listBox1.Items.Count - 1;
            int startItem = Math.Max(0, tableSize - 100);

            AzusaDexTimeline timeline = new AzusaDexTimeline();

            for (int i = startItem; i < tableSize; i++)
            {
                ListBoxDateWrapper             dateWrapper = (ListBoxDateWrapper)listBox1.Items[i];
                IEnumerable <DexTimelineEntry> entries     = DexcomHistoryService.GetDexTimelineEntries(dateWrapper.Value);
                foreach (DexTimelineEntry entry in entries)
                {
                    timeline.Data.Add(entry);
                }
            }
            timeline.Order();
            FileInfo fi = new FileInfo(saveFileDialog1.FileName);

            if (fi.Exists)
            {
                fi.Delete();
            }
            timeline.SaveCsv(fi, true, true, false);
            AzusaContext.GetInstance().MainForm.SetStatusBar("CSV-Export fertig!");
        }
Esempio n. 2
0
        public void OnLoad()
        {
            AzusaContext context = AzusaContext.GetInstance();

            context.Splash.SetLabel("Frage CGM Tage ab...");
            UpdateDates();
            if (listBox1.Items.Count > 0)
            {
                int lastDay = listBox1.Items.Count;
                while (true)
                {
                    lastDay--;
                    ListBoxDateWrapper lbdw = (ListBoxDateWrapper)listBox1.Items[lastDay];
                    if (lbdw.Value > DateTime.Now)
                    {
                        continue;
                    }
                    else
                    {
                        break;
                    }
                }
            }
        }
Esempio n. 3
0
        private void listBox1_SelectedValueChanged(object sender, EventArgs e)
        {
            ListBoxDateWrapper      dateWrapper = (ListBoxDateWrapper)listBox1.SelectedItem;
            List <DexTimelineEntry> entries     = DexcomHistoryService.GetDexTimelineEntries(dateWrapper.Value).ToList();

            entries.Sort((x, y) => x.Timestamp.CompareTo(y.Timestamp));

            List <DexTimelineEntry> glucoseEvents = entries.FindAll(x => x.GlucoseSpecified);
            List <DexTimelineEntry> events        = entries.FindAll(x => x.InsulinSpecified || x.CarbsSpecified || x.EventTypeSpecified || x.MeterGlucoseSpecified || x.SessionStateSpecified);

            plotSurface2D1.Clear();

            if (glucoseEvents.Count == 0)
            {
                plotSurface2D1.Refresh();
                plotSurface2D1.Update();
                return;
            }

            plotSurface2D1.XAxis1 = new DateTimeAxis(dateWrapper.Value.Date, dateWrapper.Value.Date.AddHours(24));
            plotSurface2D1.YAxis1 = new LinearAxis(0, 400);

            DateTime[] xValues;
            double[]   yValues;

            xValues = new DateTime[glucoseEvents.Count];
            yValues = new double[glucoseEvents.Count];
            for (int i = 0; i < glucoseEvents.Count; i++)
            {
                xValues[i] = glucoseEvents[i].Timestamp;
                yValues[i] = (double)glucoseEvents[i].Glucose.Value;
            }

            DateTime lastEvent = DateTime.MaxValue;
            double   angle     = 90.0;

            foreach (DexTimelineEntry theEvent in events)
            {
                string msg = "???";
                if (theEvent.CarbsSpecified)
                {
                    msg = String.Format("{0} BE", theEvent.Carbs.Value / 12);
                }
                else if (theEvent.InsulinSpecified)
                {
                    msg = String.Format("{0} IE", theEvent.Insulin.Value);
                }
                else if (theEvent.SessionStateSpecified)
                {
                    msg = theEvent.SessionState.Value.ToString();
                }
                else if (theEvent.ExerciseEventSpecified)
                {
                    msg = String.Format("{0} Exercise", theEvent.ExerciseEvent.Value);
                }
                else if (theEvent.HealthEventSpecified)
                {
                    msg = theEvent.HealthEvent.ToString();
                }
                else if (theEvent.MeterGlucoseSpecified)
                {
                    msg = String.Format("Calibration: {0}", theEvent.MeterGlucose.Value);
                }

                if ((theEvent.Timestamp - lastEvent).TotalMinutes < 10)
                {
                    angle += 10;
                }

                PointD    pt         = new PointD(theEvent.Timestamp.Ticks, GuessYValue(glucoseEvents, theEvent.Timestamp));
                ArrowItem annotation = new ArrowItem(pt, angle, msg);
                angle += 5;
                plotSurface2D1.Add(annotation);
            }

            LinePlot glucosePlot = new LinePlot(yValues, xValues);

            plotSurface2D1.Add(glucosePlot);

            plotSurface2D1.Refresh();
            plotSurface2D1.Update();

            /*chart1.ChartAreas[0].AxisX.Minimum = dateWrapper.Value.Date.ToOADate();
             * chart1.ChartAreas[0].AxisX.Maximum = (dateWrapper.Value.Date + new TimeSpan(24, 0, 0)).ToOADate();
             * chart1.Series.Clear();
             * chart1.Annotations.Clear();
             *
             * Series glucoseSeries = new Series();
             * glucoseSeries.ChartType = SeriesChartType.Line;
             * glucoseSeries.XValueType = ChartValueType.Time;
             * chart1.Series.Add(glucoseSeries);
             * Series eventSeries = new Series();
             * eventSeries.ChartType = SeriesChartType.Point;
             * eventSeries.XValueType = ChartValueType.Time;
             * chart1.Series.Add(eventSeries);
             * DataPoint lastDataPoint = new DataPoint(0, 200);
             * foreach (DexTimelineEntry dte in entries)
             * {
             *  if (dte.Glucose != null)
             *  {
             *      lastDataPoint = new DataPoint();
             *      lastDataPoint.XValue = dte.Timestamp.ToOADate();
             *      lastDataPoint.YValues = new double[] { dte.Glucose.Value };
             *      glucoseSeries.Points.Add(lastDataPoint);
             *  }
             *  if (dte.Insulin != null)
             *  {
             *      DataPoint eventPoint = new DataPoint();
             *      eventPoint.XValue = dte.Timestamp.ToOADate();
             *      eventPoint.YValues = lastDataPoint.YValues;
             *      eventSeries.Points.Add(eventPoint);
             *      CalloutAnnotation insulinAnnotation = new CalloutAnnotation();
             *      insulinAnnotation.Text = String.Format("{0} IE", dte.Insulin);
             *      insulinAnnotation.AnchorDataPoint = eventPoint;
             *      chart1.Annotations.Add(insulinAnnotation);
             *  }
             *  if (dte.Carbs != null)
             *  {
             *      DataPoint eventPoint = new DataPoint();
             *      eventPoint.XValue = dte.Timestamp.ToOADate();
             *      eventPoint.YValues = lastDataPoint.YValues;
             *      eventSeries.Points.Add(eventPoint);
             *      CalloutAnnotation insulinAnnotation = new CalloutAnnotation();
             *      insulinAnnotation.Text = String.Format("{0} BE", dte.Carbs / 12);
             *      insulinAnnotation.AnchorDataPoint = eventPoint;
             *      chart1.Annotations.Add(insulinAnnotation);
             *  }
             *  if (dte.EventType != null)
             *  {
             *      DataPoint eventPoint = new DataPoint();
             *      eventPoint.XValue = dte.Timestamp.ToOADate();
             *      eventPoint.YValues = lastDataPoint.YValues;
             *      eventSeries.Points.Add(eventPoint);
             *      switch (dte.EventType)
             *      {
             *          case moe.yo3explorer.azusa.dex.Schema.Enums.EventType.Exercise:
             *              CalloutAnnotation exerciseAnnotation = new CalloutAnnotation();
             *              exerciseAnnotation.Text = String.Format(dte.ExerciseEvent.Value.ToString());
             *              exerciseAnnotation.AnchorDataPoint = eventPoint;
             *              chart1.Annotations.Add(exerciseAnnotation);
             *              break;
             *          case moe.yo3explorer.azusa.dex.Schema.Enums.EventType.Health:
             *              CalloutAnnotation healthAnnotation = new CalloutAnnotation();
             *              healthAnnotation.Text = String.Format(dte.HealthEvent.Value.ToString());
             *              healthAnnotation.AnchorDataPoint = eventPoint;
             *              chart1.Annotations.Add(healthAnnotation);
             *              break;
             *      }
             *  }
             *  if (dte.MeterGlucose != null)
             *  {
             *      DataPoint eventPoint = new DataPoint();
             *      eventPoint.XValue = dte.Timestamp.ToOADate();
             *      eventPoint.YValues = new double[] { dte.MeterGlucose.Value };
             *      eventSeries.Points.Add(eventPoint);
             *      CalloutAnnotation calibrationAnnotation = new CalloutAnnotation();
             *      calibrationAnnotation.Text = String.Format("Kalibration: {0}", dte.MeterGlucose);
             *      calibrationAnnotation.AnchorDataPoint = eventPoint;
             *      chart1.Annotations.Add(calibrationAnnotation);
             *  }
             *  if (dte.SessionState != null && lastDataPoint != null)
             *  {
             *      DataPoint eventPoint = new DataPoint();
             *      eventPoint.XValue = dte.Timestamp.ToOADate();
             *      eventPoint.YValues = lastDataPoint.YValues;
             *      eventSeries.Points.Add(eventPoint);
             *      CalloutAnnotation sessionStateAnnotation = new CalloutAnnotation();
             *      sessionStateAnnotation.Text = String.Format(dte.SessionState.Value.ToString());
             *      sessionStateAnnotation.AnchorDataPoint = lastDataPoint;
             *      chart1.Annotations.Add(sessionStateAnnotation);
             *  }
             * }*/

            toolStripButton1.Enabled = listBox1.SelectedIndex > 0;
            toolStripButton2.Enabled = listBox1.SelectedIndex < listBox1.Items.Count - 1;
            toolStripTextBox1.Text   = ((ListBoxDateWrapper)listBox1.SelectedItem).Value.ToShortDateString();
        }