239 const std::vector<ConnectionParams*>& connections,
241 : wxGrid(parent, wxID_ANY),
242 m_connections(connections),
243 m_on_conn_delete(on_conn_update),
244 m_last_tooltip_cell(100),
246 SetTable(
new wxGridStringTable(),
false);
247 GetTable()->AppendCols(8);
249 static const std::array<wxString, 7> headers = {
250 "", _(
"Protocol"), _(
"In/Out"), _(
"Data port"), _(
"Status"),
"",
""};
251 for (
auto hdr = headers.begin(); hdr != headers.end(); hdr++)
252 SetColLabelValue(
static_cast<int>(hdr - headers.begin()), *hdr);
254 SetLabelBackgroundColour(GetGlobalColor(
"DILG1"));
255 SetLabelTextColour(GetGlobalColor(
"DILG3"));
258 SetColAttributes(parent);
261 DisableDragColSize();
262 DisableDragRowSize();
263 wxWindow*
options = wxWindow::FindWindowByName(
"Options");
264 assert(
options &&
"Null Options window!");
265 SetSize(wxSize(
options->GetSize().x,
options->GetSize().y * 8 / 10));
266 wxWindow::Show(GetNumberRows() > 0);
268 GetGridWindow()->Bind(wxEVT_MOTION, [&](wxMouseEvent& ev) {
273 GetGridWindow()->Bind(wxEVT_MOUSEWHEEL, [&](wxMouseEvent& ev) {
278 Bind(wxEVT_GRID_LABEL_LEFT_CLICK,
279 [&](wxGridEvent& ev) { HandleSort(ev.GetCol()); });
280 Bind(wxEVT_GRID_CELL_LEFT_CLICK,
281 [&](wxGridEvent& ev) { OnClickCell(ev.GetRow(), ev.GetCol()); });
282 Bind(wxEVT_PAINT, [&](wxPaintEvent& ev) {
283 SetColAttributes(
static_cast<wxWindow*
>(ev.GetEventObject()));
286 conn_change_lstnr.
Init(
288 [&](
ObservedEvt&) { OnConnectionChange(m_connections); });
291 void OnWheel(wxMouseEvent& ev) {
292 auto p = GetParent();
294 int dir = ev.GetWheelRotation();
296 psw->GetViewStart(&xpos, &ypos);
298 psw->GetScrollPixelsPerUnit(&xsu, &ysu);
300 psw->Scroll(-1, ypos - (dir / ysu) / 4);
304 void ReloadGrid(
const std::vector<ConnectionParams*>& connections) {
306 m_renderer_status_vector.clear();
308 for (
auto it = connections.begin(); it != connections.end(); it++) {
309 auto row =
static_cast<int>(it - connections.begin());
311 SetCellValue(row, 0, (*it)->bEnabled ?
"1" :
"");
313 m_tooltips[row][0] = _(
"Enabled, click to disable");
315 m_tooltips[row][0] = _(
"Disabled, click to enable");
316 std::string protocol = NavAddr::BusToString((*it)->GetCommProtocol());
317 SetCellValue(row, 1, protocol);
318 SetCellValue(row, 2, (*it)->GetIOTypeValueStr());
319 SetCellValue(row, 3, (*it)->GetStrippedDSPort());
320 m_tooltips[row][3] = (*it)->UserComment;
322 m_tooltips[row][5] = _(
"Edit connection");
324 m_tooltips[row][6] = _(
"Delete connection");
325 SetCellValue(row, 7, (*it)->GetKey());
328 stat_renderer->status = ConnState::Disabled;
329 m_renderer_status_vector.push_back(stat_renderer);
330 SetCellRenderer(row, 4, stat_renderer);
332 OnConnectionChange(m_connections);
336 wxSize GetGridMaxSize()
const {
337 return wxSize(GetCharWidth() * 120,
338 std::min(GetNumberRows() + 3, 10) * 2 * GetCharHeight());
341 wxSize GetGridMinSize()
const {
342 return wxSize(GetCharWidth() * 80,
343 std::min(GetNumberRows() + 3, 6) * 2 * GetCharHeight());
351 int row1 = m_conns->FindConnectionIndex(p1);
352 int row2 = m_conns->FindConnectionIndex(p2);
353 if (row1 == -1 && row2 == -1)
return false;
354 if (row1 == -1)
return false;
355 if (row2 == -1)
return true;
356 int v1 =
static_cast<int>(m_conns->GetCellValue(row1, 4)[0]);
357 int v2 =
static_cast<int>(m_conns->GetCellValue(row2, 4)[0]);
369 auto found = find_if(m_connections.begin(), m_connections.end(),
371 return GetCellValue(row, 7) == p->GetKey();
373 return found != m_connections.end() ? *found :
nullptr;
384 find_if(m_connections.begin(), m_connections.end(),
386 if (found == m_connections.end())
return -1;
387 return static_cast<int>(found - m_connections.begin());
394 void EnsureRows(
size_t rows) {
395 while (m_tooltips.size() <= rows)
396 m_tooltips.push_back(std::vector<std::string>(7));
397 while (GetNumberRows() <=
static_cast<int>(rows)) AppendRows(1,
false);
401 void SetColAttributes(wxWindow* parent) {
404 SetDefaultCellBackgroundColour(GetGlobalColor(
"DILG1"));
406 auto enable_attr =
new wxGridCellAttr();
407 enable_attr->SetAlignment(wxALIGN_CENTRE, wxALIGN_CENTRE);
408 enable_attr->SetRenderer(
new wxGridCellBoolRenderer());
409 enable_attr->SetEditor(
new wxGridCellBoolEditor());
410 if (IsWindows()) enable_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
411 SetColAttr(0, enable_attr);
413 auto protocol_attr =
new wxGridCellAttr();
414 protocol_attr->SetAlignment(wxALIGN_LEFT, wxALIGN_CENTRE);
415 protocol_attr->SetReadOnly(
true);
417 protocol_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
418 SetColAttr(1, protocol_attr);
420 auto in_out_attr =
new wxGridCellAttr();
421 in_out_attr->SetAlignment(wxALIGN_CENTRE, wxALIGN_CENTRE);
422 in_out_attr->SetReadOnly(
true);
423 if (IsWindows()) in_out_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
424 SetColAttr(2, in_out_attr);
426 auto port_attr =
new wxGridCellAttr();
427 port_attr->SetAlignment(wxALIGN_LEFT, wxALIGN_CENTRE);
428 port_attr->SetReadOnly(
true);
429 if (IsWindows()) port_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
430 SetColAttr(3, port_attr);
432 auto status_attr =
new wxGridCellAttr();
433 status_attr->SetAlignment(wxALIGN_CENTRE, wxALIGN_CENTRE);
434 status_attr->SetReadOnly(
true);
435 status_attr->SetFont(parent->GetFont().Scale(1.3));
436 if (IsWindows()) status_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
437 SetColAttr(4, status_attr);
439 auto edit_attr =
new wxGridCellAttr();
440 edit_attr->SetAlignment(wxALIGN_CENTRE, wxALIGN_CENTRE);
441 edit_attr->SetFont(parent->GetFont().Scale(1.3));
442 edit_attr->SetReadOnly(
true);
443 if (IsWindows()) edit_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
444 SetColAttr(5, edit_attr);
446 auto delete_attr =
new wxGridCellAttr();
447 delete_attr->SetAlignment(wxALIGN_LEFT, wxALIGN_CENTRE);
448 delete_attr->SetFont(parent->GetFont().Scale(1.3));
449 delete_attr->SetTextColour(*wxRED);
450 delete_attr->SetReadOnly(
true);
451 if (IsWindows()) delete_attr->SetBackgroundColour(GetGlobalColor(
"DILG1"));
452 SetColAttr(6, delete_attr);
456 void OnClickCell(
int row,
int col) {
461 }
else if (col == 6) {
466 void OnMouseMove(wxMouseEvent& ev) {
467 wxPoint pt = ev.GetPosition();
468 int row = YToRow(pt.y);
469 int col = XToCol(pt.x);
470 if (col < 0 || col >= 7 || row < 0 || row >= GetNumberRows())
return;
471 if (row * 7 + col == m_last_tooltip_cell)
return;
472 m_last_tooltip_cell = row * 7 + col;
473 GetGridWindow()->SetToolTip(m_tooltips[row][col]);
477 void OnConnectionChange(
const std::vector<ConnectionParams*>& connections) {
478 bool refresh_needed =
false;
479 for (
auto it = connections.begin(); it != connections.end(); it++) {
480 ConnState state = m_conn_states.GetDriverState(
481 (*it)->GetCommProtocol(), (*it)->GetStrippedDSPort());
482 if (!(*it)->bEnabled) state = ConnState::Disabled;
483 auto row =
static_cast<int>(it - connections.begin());
485 if (m_renderer_status_vector.size() < (
size_t)(row + 1))
continue;
487 case ConnState::Disabled:
488 if (m_renderer_status_vector[row]->status != ConnState::Disabled) {
489 m_renderer_status_vector[row]->SetBitmap(m_icons.filled_circle);
490 m_renderer_status_vector[row]->status = ConnState::Disabled;
491 refresh_needed =
true;
493 m_tooltips[row][4] = _(
"Disabled");
495 case ConnState::NoStats:
496 if (m_renderer_status_vector[row]->status != ConnState::NoStats) {
497 m_renderer_status_vector[row]->SetBitmap(m_icons.open_circle);
498 m_renderer_status_vector[row]->status = ConnState::NoStats;
499 refresh_needed =
true;
501 m_tooltips[row][4] = _(
"No driver statistics available");
503 case ConnState::NoData:
504 if (m_renderer_status_vector[row]->status != ConnState::NoData) {
505 m_renderer_status_vector[row]->SetBitmap(m_icons.exclaim_mark);
506 m_renderer_status_vector[row]->status = ConnState::NoData;
507 refresh_needed =
true;
509 m_tooltips[row][4] = _(
"No data flowing through connection");
511 case ConnState::Unavailable:
512 if (m_renderer_status_vector[row]->status != ConnState::Unavailable) {
513 m_renderer_status_vector[row]->SetBitmap(m_icons.x_mult);
514 m_renderer_status_vector[row]->status = ConnState::Unavailable;
515 refresh_needed =
true;
517 m_tooltips[row][4] = _(
"The device is unavailable");
520 if (m_renderer_status_vector[row]->status != ConnState::Ok) {
521 m_renderer_status_vector[row]->SetBitmap(m_icons.check_mark);
522 m_renderer_status_vector[row]->status = ConnState::Ok;
523 refresh_needed =
true;
525 m_tooltips[row][4] = _(
"Data is flowing");
529 if (refresh_needed) ForceRefresh();
532 void SetSortingColumn(
int col) {
533 if (GetSortingColumn() != wxNOT_FOUND) {
534 int old_col = GetSortingColumn();
535 auto label = GetColLabelValue(old_col);
536 if (label[0] == kUtfArrowDown[0])
537 SetColLabelValue(old_col, label.substr(2));
539 auto label = GetColLabelValue(col);
540 if (label[0] != kUtfArrowDown[0])
541 SetColLabelValue(col, kUtfArrowDown +
" " + label);
542 wxGrid::SetSortingColumn(col);
547 void HandleSort(
int col) {
549 auto& params = TheConnectionParams();
551 std::sort(params.begin(), params.end(),
ConnCompare(col));
553 std::sort(params.begin(), params.end(), ConnStateCompare(
this));
555 SetSortingColumn(col);
559 void HandleEnable(
int row) {
562 cp->bEnabled = !cp->bEnabled;
563 cp->b_IsSetup = FALSE;
564 SetCellValue(row, 0, cp->bEnabled ?
"1" :
"");
566 m_tooltips[row][0] = _(
"Enabled, click to disable");
568 m_tooltips[row][0] = _(
"Disabled, click to enable");
570 stats.driver_iface = cp->GetStrippedDSPort();
571 stats.driver_bus = cp->GetCommProtocol();
572 m_conn_states.HandleDriverStats(stats);
573 StopAndRemoveCommDriver(cp->GetStrippedDSPort(), cp->GetCommProtocol());
574 if (cp->bEnabled) MakeCommDriver(cp);
575 cp->b_IsSetup =
true;
576 if (!cp->bEnabled) SetCellValue(row, 4, kUtfFilledCircle);
580 void HandleEdit(
int row) {
584 DimeControl(&dialog);
585 dialog.SetPropsLabel(_(
"Edit Selected Connection"));
586 dialog.PreloadControls(cp);
587 wxWindow*
options = wxWindow::FindWindowByName(
"Options");
588 assert(
options &&
"Null Options window!");
591 Show(GetNumberRows() > 0);
593 auto rv = dialog.ShowModal();
596 delete cp->m_optionsPanel;
597 StopAndRemoveCommDriver(cp->GetStrippedDSPort(), cp->GetCommProtocol());
598 int index = FindConnectionIndex(cp);
599 assert(index != -1 &&
"Cannot look up connection index");
600 TheConnectionParams()[index] = cp_edited;
601 cp_edited->b_IsSetup =
false;
609 void HandleDelete(
int row) {
611 auto found = std::find(m_connections.begin(), m_connections.end(), cp);
612 if (found != m_connections.end()) {
613 std::stringstream ss;
614 ss << _(
"Ok to delete connection on ") << (*found)->GetStrippedDSPort();
615 int rcode = OCPNMessageBox(
this, ss.str(), _(
"Delete connection?"),
617 if (rcode != wxID_OK && rcode != wxID_YES)
return;
618 delete (*found)->m_optionsPanel;
619 StopAndRemoveCommDriver((*found)->GetStrippedDSPort(),
620 (*found)->GetCommProtocol());
621 TheConnectionParams().erase(found);
622 if (GetNumberRows() >
static_cast<int>(m_connections.size()))
623 DeleteRows(GetNumberRows() - 1);
624 m_on_conn_delete.
Notify();
629 std::vector<std::vector<std::string>> m_tooltips;
631 const std::vector<ConnectionParams*>& m_connections;
633 int m_last_tooltip_cell;
635 std::vector<BitmapCellRenderer*> m_renderer_status_vector;
722 explicit AdvancedPanel(wxWindow* parent) : wxPanel(parent, wxID_ANY) {
723 auto sizer =
new wxStaticBoxSizer(wxVERTICAL,
this,
"");
724 sizer->Add(
new BearingsCheckbox(
this), wxSizerFlags().Expand());
725 sizer->Add(
new NmeaFilterRow(
this), wxSizerFlags().Expand());
726 sizer->Add(
new TalkerIdRow(
this), wxSizerFlags().Expand());
727 sizer->Add(
new NetmaskRow(
this), wxSizerFlags().Expand());
733 class BearingsCheckbox :
public wxCheckBox,
public ApplyCancel {
735 BearingsCheckbox(wxWindow* parent)
736 : wxCheckBox(parent, wxID_ANY,
737 _(
"Use magnetic bearing in output sentence APB")) {
738 SetValue(g_bMagneticAPB);
739 wxCheckBox::SetValue(g_bMagneticAPB);
742 void Apply()
override { g_bMagneticAPB = GetValue(); }
743 void Cancel()
override { SetValue(g_bMagneticAPB); }
747 class NmeaFilterRow :
public wxPanel,
public ApplyCancel {
748 wxCheckBox* checkbox;
749 wxTextCtrl* filter_period;
752 NmeaFilterRow(wxWindow* parent) : wxPanel(parent) {
753 auto hbox =
new wxBoxSizer(wxHORIZONTAL);
754 checkbox =
new wxCheckBox(
756 _(
"Filter NMEA course and speed data. Filter period: "));
757 checkbox->SetValue(g_bfilter_cogsog);
758 hbox->Add(checkbox, wxSizerFlags().Align(wxALIGN_CENTRE));
760 new wxTextCtrl(
this, wxID_ANY,
"", wxDefaultPosition,
761 wxSize(50, 3 * wxWindow::GetCharWidth()), 0);
762 filter_period->SetValue(std::to_string(g_COGFilterSec));
763 hbox->Add(filter_period, wxSizerFlags().Border());
768 void Apply()
override {
769 std::stringstream ss;
770 ss << filter_period->GetValue();
771 ss >> g_COGFilterSec;
772 g_bfilter_cogsog = checkbox->GetValue();
775 void Cancel()
override {
776 std::stringstream ss;
777 ss << g_COGFilterSec;
778 filter_period->SetValue(ss.str());
779 checkbox->SetValue(g_bfilter_cogsog);
784 class TalkerIdRow :
public wxPanel,
public ApplyCancel {
785 wxTextCtrl* text_ctrl;
788 TalkerIdRow(wxWindow* parent) : wxPanel(parent) {
789 auto hbox =
new wxBoxSizer(wxHORIZONTAL);
790 hbox->Add(
new wxStaticText(
this, wxID_ANY, _(
"NMEA 0183 Talker Id: ")),
791 wxSizerFlags().Align(wxALIGN_CENTRE_VERTICAL).Border());
792 text_ctrl =
new wxTextCtrl(
this, wxID_ANY,
"", wxDefaultPosition,
793 wxSize(50, 3 * wxWindow::GetCharWidth()));
794 text_ctrl->SetValue(g_TalkerIdText);
795 hbox->Add(text_ctrl, wxSizerFlags().Border());
800 void Apply()
override { g_TalkerIdText = text_ctrl->GetValue(); }
801 void Cancel()
override { text_ctrl->SetValue(g_TalkerIdText); }
805 class NetmaskRow :
public wxPanel,
public ApplyCancel {
807 NetmaskRow(wxWindow* parent)
809 m_spin_ctrl(
new wxSpinCtrl(
this, wxID_ANY)),
810 m_text(
new wxStaticText(
this, wxID_ANY,
"")) {
811 m_spin_ctrl->SetRange(8, 32);
812 auto hbox =
new wxBoxSizer(wxHORIZONTAL);
813 auto flags = wxSizerFlags().Align(wxALIGN_CENTRE_VERTICAL).Border();
814 hbox->Add(
new wxStaticText(
this, wxID_ANY, _(
"Netmask: ")), flags);
815 hbox->Add(m_text, flags);
816 hbox->Add(
new wxStaticText(
this, wxID_ANY, _(
"length (bits): ")), flags);
817 hbox->Add(m_spin_ctrl, flags);
821 Bind(wxEVT_SPINCTRL, [&](wxSpinEvent& ev) {
822 m_text->SetLabel(BitsToDottedMask(m_spin_ctrl->GetValue()));
827 void Apply()
override { g_netmask_bits = m_spin_ctrl->GetValue(); }
829 void Cancel()
override {
830 m_spin_ctrl->SetValue(g_netmask_bits);
831 m_text->SetLabel(BitsToDottedMask(m_spin_ctrl->GetValue()));
836 wxSpinCtrl* m_spin_ctrl;
837 wxStaticText* m_text;
839 std::string BitsToDottedMask(
unsigned bits) {
840 uint32_t mask = 0xffffffff << (32 - bits);
841 std::stringstream ss;
842 ss << ((mask & 0xff000000) >> 24) <<
".";
843 ss << ((mask & 0x00ff0000) >> 16) <<
".";
844 ss << ((mask & 0x0000ff00) >> 8) <<
".";
845 ss << (mask & 0x000000ff);