36#include <wx/tokenzr.h>
38#ifdef __OCPN__ANDROID__
39#include "androidUTIL.h"
41#include <QtWidgets/QScroller>
44#include "priority_gui.h"
46#include "model/comm_bridge.h"
47#include "ocpn_frame.h"
55 m_category = category, m_index = index;
59 int m_category, m_index;
62PriorityDlg::PriorityDlg(wxWindow* parent)
63 : wxDialog(parent, wxID_ANY, _(
"Adjust Comm Priorities"), wxDefaultPosition,
64 wxSize(480, 420), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) {
68 wxBoxSizer* mainSizer =
new wxBoxSizer(wxVERTICAL);
71 wxBoxSizer* secondSizer =
new wxBoxSizer(wxHORIZONTAL);
72 mainSizer->Add(secondSizer, 1, wxEXPAND, 5);
74 wxStaticBox* pclbBox =
new wxStaticBox(
this, wxID_ANY, _(
"Priority List"));
75 wxStaticBoxSizer* stcSizer =
new wxStaticBoxSizer(pclbBox, wxVERTICAL);
76 secondSizer->Add(stcSizer, 1, wxALL | wxEXPAND, 5);
78 m_prioTree =
new wxTreeCtrl(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize);
79 stcSizer->Add(m_prioTree, 1, wxALL | wxEXPAND, 5);
82 m_prioTree->SetFont(*pF);
84 m_prioTree->GetHandle()->setStyleSheet(
85 getWideScrollBarsStyleSheet() );
86 QScroller::ungrabGesture(m_prioTree->GetHandle());
89 wxBoxSizer* btnEntrySizer =
new wxBoxSizer(wxVERTICAL);
90 secondSizer->Add(btnEntrySizer, 0, wxALL | wxEXPAND, 5);
91 btnMoveUp =
new wxButton(
this, wxID_ANY, _(
"Move Up"));
92 btnMoveDown =
new wxButton(
this, wxID_ANY, _(
"Move Down"));
94 btnMoveDown->Disable();
96 btnEntrySizer->Add(btnMoveUp, 0, wxALL, 5);
97 btnEntrySizer->Add(btnMoveDown, 0, wxALL, 5);
99 btnEntrySizer->AddSpacer(15);
101 btnRefresh =
new wxButton(
this, wxID_ANY, _(
"Refresh"));
102 btnClear =
new wxButton(
this, wxID_ANY, _(
"Clear All"));
104 btnEntrySizer->Add(btnRefresh, 0, wxALL, 5);
105 btnEntrySizer->Add(btnClear, 0, wxALL, 5);
107 wxStdDialogButtonSizer* btnSizer =
new wxStdDialogButtonSizer();
108 wxButton* btnOK =
new wxButton(
this, wxID_OK);
109 wxButton* btnCancel =
new wxButton(
this, wxID_CANCEL, _(
"Cancel"));
110 btnSizer->AddButton(btnOK);
111 btnSizer->AddButton(btnCancel);
113 mainSizer->Add(btnSizer, 0, wxALL | wxEXPAND, 5);
116 btnMoveUp->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
117 wxCommandEventHandler(PriorityDlg::OnMoveUpClick), NULL,
119 btnMoveDown->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
120 wxCommandEventHandler(PriorityDlg::OnMoveDownClick),
123 btnRefresh->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
124 wxCommandEventHandler(PriorityDlg::OnRefreshClick), NULL,
127 btnClear->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
128 wxCommandEventHandler(PriorityDlg::OnClearClick), NULL,
131 m_prioTree->Connect(wxEVT_TREE_SEL_CHANGED,
132 wxCommandEventHandler(PriorityDlg::OnItemSelected), NULL,
136 MyApp& app = wxGetApp();
137 m_map = app.m_comm_bridge.GetPriorityMaps();
141 int n_lines = wxMax(m_prioTree->GetCount(), 15);
144 int char_width, char_height;
145 dc.GetTextExtent(
"W", &char_width, &char_height, NULL, NULL, m_pF);
147 int stcw = wxMax(m_maxStringLength * 15 / 10, 15 * char_width);
148 wxSize min_size = wxSize(
149 stcw, wxMin(gFrame->GetSize().y * 2 / 4, n_lines * GetCharHeight()));
151 stcSizer->SetMinSize(min_size);
153 SetMaxSize(gFrame->GetSize());
160 androidDisableRotation();
164PriorityDlg::~PriorityDlg() {
166 androidEnableRotation();
170void PriorityDlg::AddLeaves(
const std::vector<std::string>& map_list,
171 size_t map_index, std::string map_name,
172 wxTreeItemId leaf_parent) {
173 if (map_list.size() < (
size_t)map_index)
return;
176 MyApp& app = wxGetApp();
179 wxString priority_string(map_list[map_index].c_str());
180 wxStringTokenizer tk(priority_string,
"|");
182 while (tk.HasMoreTokens()) {
183 wxString item_string = tk.GetNextToken();
186 int char_width, char_height;
187 dc.GetTextExtent(item_string, &char_width, &char_height, NULL, NULL, m_pF);
190 if (char_width > m_maxStringLength) {
191 m_maxStringLength = char_width;
192 m_max_string = item_string;
197 m_prioTree->AppendItem(leaf_parent, item_string, -1, -1, pe);
200 if ((
size_t)(pc.active_priority) == index) m_prioTree->SetItemBold(id_tk);
206void PriorityDlg::Populate() {
207 m_prioTree->Unselect();
208 m_prioTree->DeleteAllItems();
209 m_maxStringLength = 15;
213 wxTreeItemId m_rootId = m_prioTree->AddRoot(_(
"Priorities"), -1, -1, NULL);
214 m_prioTree->SetItemHasChildren(m_rootId);
216 wxTreeItemId id_position =
217 m_prioTree->AppendItem(m_rootId, _(
"Position"), -1, -1, NULL);
218 m_prioTree->SetItemHasChildren(id_position);
219 AddLeaves(m_map, 0,
"position", id_position);
221 wxTreeItemId id_velocity =
222 m_prioTree->AppendItem(m_rootId, _(
"Speed/Course"), -1, -1, NULL);
223 m_prioTree->SetItemHasChildren(id_velocity);
224 AddLeaves(m_map, 1,
"velocity", id_velocity);
226 wxTreeItemId id_heading =
227 m_prioTree->AppendItem(m_rootId, _(
"Heading"), -1, -1, NULL);
228 m_prioTree->SetItemHasChildren(id_heading);
229 AddLeaves(m_map, 2,
"heading", id_heading);
231 wxTreeItemId id_magvar =
232 m_prioTree->AppendItem(m_rootId, _(
"Mag Variation"), -1, -1, NULL);
233 m_prioTree->SetItemHasChildren(id_magvar);
234 AddLeaves(m_map, 3,
"variation", id_magvar);
236 wxTreeItemId id_sats =
237 m_prioTree->AppendItem(m_rootId, _(
"Satellites"), -1, -1, NULL);
238 m_prioTree->SetItemHasChildren(id_sats);
239 AddLeaves(m_map, 4,
"satellites", id_sats);
241 m_prioTree->ExpandAll();
244 wxTreeItemId rootID = m_prioTree->GetRootItem();
245 wxTreeItemIdValue cookie;
246 int i = m_selmap_index;
247 wxTreeItemId cid = m_prioTree->GetFirstChild(rootID, cookie);
249 while ((i > 0) && cid.IsOk()) {
250 cid = m_prioTree->GetNextChild(rootID, cookie);
254 wxTreeItemId ccid = m_prioTree->GetFirstChild(cid, cookie);
257 while ((j > 0) && ccid.IsOk()) {
258 ccid = m_prioTree->GetNextChild(cid, cookie);
262 if (ccid.IsOk()) m_prioTree->SelectItem(ccid);
265void PriorityDlg::OnItemSelected(wxCommandEvent& event) {
266 btnMoveUp->Disable();
267 btnMoveDown->Disable();
269 wxTreeItemId
id = m_prioTree->GetSelection();
273 m_selIndex = pe->m_index;
274 m_selmap_index = pe->m_category;
276 if (pe->m_index > 0) {
280 wxTreeItemId id_parent = m_prioTree->GetItemParent(
id);
284 wxTreeItemIdValue cookie;
285 wxTreeItemId ch = m_prioTree->GetFirstChild(id_parent, cookie);
288 ch = m_prioTree->GetNextChild(id_parent, cookie);
291 if (pe->m_index < n_sibs - 1) btnMoveDown->Enable();
294void PriorityDlg::OnMoveUpClick(wxCommandEvent& event) {
295 ProcessMove(m_prioTree->GetSelection(), -1);
298void PriorityDlg::OnMoveDownClick(wxCommandEvent& event) {
299 ProcessMove(m_prioTree->GetSelection(), 1);
302void PriorityDlg::ProcessMove(wxTreeItemId
id,
int dir) {
306 if (pe->m_category > 4)
return;
309 wxString priority_string = wxString(m_map[pe->m_category].c_str());
312 wxString prio_array[16];
314 wxStringTokenizer tk(priority_string,
"|");
316 while (tk.HasMoreTokens() && index < 16) {
317 prio_array[index] = tk.GetNextToken();
320 int max_index = index;
324 if (pe->m_index > 0) {
326 wxString s_above = prio_array[pe->m_index - 1];
327 wxString s_move = prio_array[pe->m_index];
328 prio_array[pe->m_index - 1] = s_move;
329 prio_array[pe->m_index] = s_above;
333 if (pe->m_index < max_index) {
335 wxString s_below = prio_array[pe->m_index + 1];
336 wxString s_move = prio_array[pe->m_index];
337 prio_array[pe->m_index + 1] = s_move;
338 prio_array[pe->m_index] = s_below;
345 for (
int i = 0; i < 16; i++) {
346 if (prio_array[i].Length()) {
347 prio_mod += prio_array[i];
348 prio_mod += wxString(
"|");
353 std::string s_upd(prio_mod.c_str());
354 m_map[pe->m_category] = s_upd;
357 if (pe->m_category == 0) {
359 AdjustCOGSOGPriority();
363 MyApp& app = wxGetApp();
364 app.m_comm_bridge.UpdateAndApplyMaps(m_map);
367 m_map = app.m_comm_bridge.GetPriorityMaps();
371void PriorityDlg::OnRefreshClick(wxCommandEvent& event) {
373 MyApp& app = wxGetApp();
374 m_map = app.m_comm_bridge.GetPriorityMaps();
378void PriorityDlg::OnClearClick(wxCommandEvent& event) {
385 m_selmap_index = m_selIndex = 0;
388 MyApp& app = wxGetApp();
389 app.m_comm_bridge.UpdateAndApplyMaps(m_map);
392 m_map = app.m_comm_bridge.GetPriorityMaps();
396void PriorityDlg::AdjustSatPriority() {
398 std::string sat_prio = m_map[4];
399 wxArrayString sat_sources;
400 wxString sat_priority_string(sat_prio.c_str());
401 wxStringTokenizer tks(sat_priority_string,
"|");
402 while (tks.HasMoreTokens()) {
403 wxString item_string = tks.GetNextToken();
404 sat_sources.Add(item_string);
408 std::string pos_prio = m_map[0];
409 wxString pos_priority_string(pos_prio.c_str());
410 wxStringTokenizer tk(pos_priority_string,
"|");
411 wxArrayString new_sat_prio;
412 while (tk.HasMoreTokens()) {
413 wxString item_string = tk.GetNextToken();
414 wxString pos_channel = item_string.BeforeFirst(
';');
418 for (
size_t i = 0; i < sat_sources.GetCount(); i++) {
419 if (pos_channel.IsSameAs(sat_sources[i].BeforeFirst(
';'))) {
420 new_sat_prio.Add(sat_sources[i]);
422 sat_sources[i] =
"USED";
430 wxString proposed_sat_prio;
431 for (
size_t i = 0; i < new_sat_prio.GetCount(); i++) {
432 proposed_sat_prio += new_sat_prio[i];
433 proposed_sat_prio += wxString(
"|");
437 m_map[4] = proposed_sat_prio.ToStdString();
440void PriorityDlg::AdjustCOGSOGPriority() {
442 std::string cogsog_prio = m_map[1];
443 wxArrayString cogsog_sources;
444 wxString cogsog_priority_string(cogsog_prio.c_str());
445 wxStringTokenizer tks(cogsog_priority_string,
"|");
446 while (tks.HasMoreTokens()) {
447 wxString item_string = tks.GetNextToken();
448 cogsog_sources.Add(item_string);
452 std::string pos_prio = m_map[0];
453 wxString pos_priority_string(pos_prio.c_str());
454 wxStringTokenizer tk(pos_priority_string,
"|");
455 wxArrayString new_cogsog_prio;
456 while (tk.HasMoreTokens()) {
457 wxString item_string = tk.GetNextToken();
458 wxString pos_channel = item_string.BeforeFirst(
';');
462 for (
size_t i = 0; i < cogsog_sources.GetCount(); i++) {
463 if (pos_channel.IsSameAs(cogsog_sources[i].BeforeFirst(
';'))) {
464 new_cogsog_prio.Add(cogsog_sources[i]);
466 cogsog_sources[i] =
"USED";
474 wxString proposed_cogsog_prio;
475 for (
size_t i = 0; i < new_cogsog_prio.GetCount(); i++) {
476 proposed_cogsog_prio += new_cogsog_prio[i];
477 proposed_cogsog_prio += wxString(
"|");
481 m_map[1] = proposed_cogsog_prio.ToStdString();
PlugIn Object Definition/API.
wxFont * OCPNGetFont(wxString TextElement, int default_size)
Gets a font for UI elements.