void GCDCGraphs::DrawXAxisVals(wxGraphicsContext& dc) { Draw* draw = m_draws_wdg->GetSelectedDraw(); if (draw == NULL) return; /* Draw ticks on axis. */ int i = PeriodMarkShift[draw->GetPeriod()]; int size = draw->GetValuesTable().size(); int w, h; GetClientSize(&w, &h); wxDateTime prev_date; while (i < size) { int x = GetX(i); dc.StrokeLine(x, h - m_screen_margins.bottommargin + 1, x, h - m_screen_margins.bottommargin - 1); wxDateTime date = draw->GetTimeOfIndex(i); /* Print date */ wxString datestring = get_date_string(draw->GetPeriod(), prev_date, date); double textw, texth, td, tel; dc.GetTextExtent(datestring, &textw, &texth, &td, &tel); dc.DrawText(datestring, x - textw / 2, h - m_screen_margins.bottommargin + 1); i += TimeIndex::PeriodMult[draw->GetPeriod()]; prev_date = date; } }
void GCDCGraphs::DrawParamName(wxGraphicsContext &dc) { DrawInfo *di = m_draws_wdg->GetCurrentDrawInfo(); if (di == NULL) return; dc.SetBrush(*wxBLACK_BRUSH); dc.SetPen(*wxWHITE_PEN); wxFont f = GetFont(); int ps = f.GetPointSize(); int fw = f.GetWeight(); f.SetWeight(wxFONTWEIGHT_BOLD); f.SetPointSize(ps * 1.25); dc.SetFont(f, di->GetDrawColor()); int w, h; GetSize(&w, &h); wxString text = m_cfg_mgr->GetConfigTitles()[di->GetBasePrefix()] + _T(":") + di->GetParamName(); double tw, th, _th, _ts; dc.GetTextExtent(text, &tw, &th, &_th, &_ts); dc.DrawRectangle(w / 2 - tw / 2 - 1, h / 2 - th / 2 - 1, tw + 2, th + 2); dc.DrawText(text, w / 2 - tw / 2, h / 2 - th / 2); f.SetPointSize(ps); f.SetWeight(fw); }
void GCDCGraphs::DrawUnit(wxGraphicsContext &dc) { Draw* draw = m_draws_wdg->GetSelectedDraw(); if (draw == NULL) return; double textw, texth, th, tsel; wxString unit = draw->GetDrawInfo()->GetUnit(); dc.GetTextExtent(unit, &textw, &texth, &th, &tsel); dc.DrawText(unit, m_screen_margins.leftmargin - 6 - textw, m_screen_margins.topmargin - 2 - texth); }
void GCDCGraphs::DrawWindowInfo(wxGraphicsContext &dc) { double info_left_marg = m_screen_margins.leftmargin + 8; double param_name_shift = 5; if (m_draws.size() < 1) return; int w, h; GetClientSize(&w, &h); DrawInfo *info = m_draws[0]->GetDrawInfo(); wxString name = info->GetSetName().c_str(); double namew, nameh, th, tsel; dc.GetTextExtent(name, &namew, &nameh, &th, &tsel); dc.DrawText(name, info_left_marg, m_screen_margins.infotopmargin); int xpos = info_left_marg + namew + param_name_shift; for (int i = 0; i < (int)m_draws.size(); ++i) { if (!m_draws[i]->GetEnable()) continue; DrawInfo *info = m_draws[i]->GetDrawInfo(); dc.SetFont(GetFont(), info->GetDrawColor()); name = info->GetShortName().c_str(); if (!name.IsEmpty()) { dc.GetTextExtent(name, &namew, &nameh, &th, &tsel); dc.DrawText(name, xpos, m_screen_margins.infotopmargin); xpos += namew + param_name_shift; } else { xpos += param_name_shift; } } }
void GCDCGraphs::DrawNoData(wxGraphicsContext &dc) { wxFont font = GetFont(); font.SetPointSize(font.GetPointSize() + 8); dc.SetFont(font, *wxWHITE); int w, h; GetClientSize(&w, &h); w -= m_screen_margins.leftmargin - m_screen_margins.rightmargin; h -= m_screen_margins.topmargin - m_screen_margins.bottommargin; wxString sval = _("No data"); double textw, texth, textd, textel; dc.GetTextExtent(sval, &textw, &texth, &textd, &textel); dc.DrawText(sval, m_screen_margins.leftmargin + w / 2 - textw / 2 - 1, m_screen_margins.topmargin + h / 2 - texth / 2); }
void wxChartTooltip::Draw(wxGraphicsContext &gc) { wxString text = m_provider->GetTooltipText(); wxFont font(wxSize(0, m_options.GetFontSize()), m_options.GetFontFamily(), m_options.GetFontStyle(), wxFONTWEIGHT_NORMAL); wxDouble tooltipWidth; wxDouble tooltipHeight; wxChartUtilities::GetTextSize(gc, font, text, tooltipWidth, tooltipHeight); tooltipWidth += 2 * m_options.GetHorizontalPadding(); tooltipHeight += 2 * m_options.GetVerticalPadding(); wxDouble tooltipX = m_position.m_x - (tooltipWidth / 2); wxDouble tooltipY = m_position.m_y - tooltipHeight; wxChartBackground background(m_options.GetBackgroundOptions()); background.Draw(tooltipX, tooltipY, tooltipWidth, tooltipHeight, gc); gc.SetFont(font, m_options.GetFontColor()); gc.DrawText(text, tooltipX + m_options.GetHorizontalPadding(), tooltipY + m_options.GetVerticalPadding()); }
void GCDCGraphs::DrawSeasonLimitInfo(wxGraphicsContext &dc, int i, int month, int day, bool summer) { const double stripe_width = 2; double x1 = GetX(i); double x2 = GetX(i + 1); double x = (x1 + x2) / 2; int w, h; GetClientSize(&w, &h); wxColour color = summer ? *wxBLUE : *wxRED; dc.SetFont(GetFont(), color); dc.SetPen(wxPen(color, 1, wxSOLID)); wxBrush brush(color); dc.SetBrush(brush); dc.DrawRectangle(x + 1, m_screen_margins.topmargin, stripe_width, w - m_screen_margins.topmargin - m_screen_margins.bottommargin); wxString str; if (summer) str = wxString(_("summer season")); else str = wxString(_("winter season")); str += wxString::Format(_T(" %d "), day); switch (month) { case 1: str += _("january"); break; case 2: str += _("february"); break; case 3: str += _("march"); break; case 4: str += _("april"); break; case 5: str += _("may"); break; case 6: str += _("june"); break; case 7: str += _("july"); break; case 8: str += _("august"); break; case 9: str += _("septermber"); break; case 10: str += _("october"); break; case 11: str += _("november"); break; case 12: str += _("december"); break; default: assert(false); } double tw, th, td, tsel; dc.GetTextExtent(_T("W"), &tw, &th, &td, &tsel); int ty = m_screen_margins.topmargin + 1; for (size_t i = 0; i < str.Len(); ++i) { double lw, lh, ld, lsel; wxString letter = str.Mid(i, 1); dc.GetTextExtent(letter, &lw, &lh, &ld, &lsel); dc.DrawText(letter, x + stripe_width + 2 + (tw - lw) / 2, ty); ty += th + 2; } }
void GCDCGraphs::DrawYAxisVals(wxGraphicsContext& dc) { Draw* draw = m_draws_wdg->GetSelectedDraw(); if (draw == NULL) return; DrawInfo *di = draw->GetDrawInfo(); if (!di->IsValid()) return; double min = di->GetMin(); double max = di->GetMax(); if( max <= min ) { // FIXME: Draw3 should atomaticly detect axes in that case, but // it currently doesnt :( wxLogWarning(_T("Parameter %s has invalid min/max values: min %f, max %f. Min is set to 0, and max to 100."), di->GetName().c_str(), min, max); min = 0; max = 100; } //procedure for calculating distance between marks stolen from SzarpDraw2 double x = max - min; double step; int i = 0; if (x < 1) for (;x < 1; x *=10, --i); else for (;(int)x / 10; x /=10, ++i); if (x <= 1.5) step = .1; else if (x <= 3.) step = .2; else if (x <= 7.5) step = .5; else step = 1.; double acc = 1; int prec = di->GetPrec(); for (int p = prec; p > 0; --p) acc /= 10; double factor = (i > 0) ? 10 : .1; for (;i; i -= i / abs(i)) step *= factor; if (step < acc) step = acc; dc.SetPen(wxPen(*wxWHITE, 1, wxSOLID)); int w, h; GetClientSize(&w, &h); h -= m_screen_margins.bottommargin + m_screen_margins.topmargin; for (double val = max; (min - val) < acc; val -= step) { int y = GetY(val, di); dc.StrokeLine(m_screen_margins.leftmargin - 8, y, m_screen_margins.leftmargin, y); wxString sval = di->GetValueStr(val, _T("- -")); double textw, texth, textd, textel; dc.GetTextExtent(sval, &textw, &texth, &textd, &textel); dc.DrawText(sval, m_screen_margins.leftmargin - textw - 1, y + 2); } }