CubicSDR/src/forms/Bookmark/BookmarkView.cpp

422 lines
12 KiB
C++
Raw Normal View History

#include "BookmarkView.h"
#include "CubicSDR.h"
2016-10-06 21:08:45 -04:00
#include <wx/menu.h>
#include <wx/textdlg.h>
2016-10-06 22:27:12 -04:00
#include <algorithm>
2016-10-06 21:08:45 -04:00
#define wxCONTEXT_ADD_GROUP_ID 1000
BookmarkView::BookmarkView( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style) : BookmarkPanel(parent, id, pos, size, style) {
rootBranch = m_treeView->AddRoot("Root");
activeBranch = m_treeView->AppendItem(rootBranch, "Active");
bookmarkBranch = m_treeView->AppendItem(rootBranch, "Bookmarks");
recentBranch = m_treeView->AppendItem(rootBranch, "Recents");
2016-10-06 21:08:45 -04:00
doUpdateActive.store(true);
2016-09-28 20:37:39 -04:00
activeSel = nullptr;
recentSel = nullptr;
2016-10-06 21:08:45 -04:00
bookmarksInitialized = false;
2016-09-28 20:37:39 -04:00
hideProps();
m_propPanel->Hide();
m_updateTimer.Start(500);
2016-09-14 22:49:32 -04:00
}
void BookmarkView::onUpdateTimer( wxTimerEvent& event ) {
2016-10-06 21:08:45 -04:00
if (doUpdateActive.load()) {
2016-09-14 22:49:32 -04:00
doUpdateActiveList();
2016-10-06 21:08:45 -04:00
doUpdateActive.store(false);
2016-09-14 22:49:32 -04:00
}
2016-10-06 22:27:12 -04:00
if (doUpdateBookmarks.load()) {
wxTreeItemId bmSel = refreshBookmarks();
if (bmSel) {
m_treeView->SelectItem(bmSel);
}
doUpdateBookmarks.store(false);
}
}
void BookmarkView::updateTheme() {
wxColour bgColor(ThemeMgr::mgr.currentTheme->generalBackground);
wxColour textColor(ThemeMgr::mgr.currentTheme->text);
wxColour btn(ThemeMgr::mgr.currentTheme->button);
wxColour btnHl(ThemeMgr::mgr.currentTheme->buttonHighlight);
m_treeView->SetBackgroundColour(bgColor);
m_treeView->SetForegroundColour(textColor);
m_propPanel->SetBackgroundColour(bgColor);
m_propPanel->SetForegroundColour(textColor);
m_labelLabel->SetForegroundColour(textColor);
m_frequencyVal->SetForegroundColour(textColor);
m_frequencyLabel->SetForegroundColour(textColor);
m_bandwidthVal->SetForegroundColour(textColor);
m_bandwidthLabel->SetForegroundColour(textColor);
m_modulationVal->SetForegroundColour(textColor);
m_modulationLabel->SetForegroundColour(textColor);
m_bookmarkButton->SetBackgroundColour(bgColor);
m_removeButton->SetBackgroundColour(bgColor);
m_activateButton->SetBackgroundColour(bgColor);
}
void BookmarkView::updateActiveList() {
2016-10-06 21:08:45 -04:00
doUpdateActive.store(true);
}
2016-10-06 22:27:12 -04:00
void BookmarkView::updateBookmarks() {
doUpdateBookmarks.store(true);
}
void BookmarkView::updateBookmarks(std::string group) {
doUpdateBookmarkGroup.insert(group);
doUpdateBookmarks.store(true);
}
wxTreeItemId BookmarkView::refreshBookmarks() {
2016-10-06 21:08:45 -04:00
// if (!bookmarksInitialized) {
groupNames = wxGetApp().getBookmarkMgr().getGroups();
if (!groupNames.size()) {
2016-10-06 22:27:12 -04:00
wxGetApp().getBookmarkMgr().getGroup("Ungrouped");
2016-10-06 21:08:45 -04:00
groupNames = wxGetApp().getBookmarkMgr().getGroups();
}
2016-10-06 22:27:12 -04:00
if (doUpdateBookmarkGroup.size()) { // Nothing for the moment..
doUpdateBookmarkGroup.erase(doUpdateBookmarkGroup.begin(), doUpdateBookmarkGroup.end());
}
wxTreeItemId bmSelFound = nullptr;
2016-10-06 21:08:45 -04:00
for (auto gn_i : groupNames) {
if (groups.find(gn_i) == groups.end()) {
groups[gn_i] = m_treeView->AppendItem(bookmarkBranch, gn_i);
}
wxTreeItemId groupItem = groups[gn_i];
m_treeView->DeleteChildren(groupItem);
std::vector<wxTreeItemId> &groupEnts = groupEntries[groupItem];
2016-10-06 22:27:12 -04:00
std::vector<BookmarkEntry *> &groupBMEnts = groupBookmarkEntries[groupItem];
2016-10-06 21:08:45 -04:00
groupEnts.erase(groupEnts.begin(),groupEnts.end());
2016-10-06 22:27:12 -04:00
groupBMEnts.erase(groupBMEnts.begin(),groupBMEnts.end());
2016-10-06 21:08:45 -04:00
BookmarkGroup bmList = wxGetApp().getBookmarkMgr().getGroup(gn_i);
for (auto bmEnt : bmList) {
wxTreeItemId bmItem = m_treeView->AppendItem(groupItem, bmEnt->label);
groupEnts.push_back(bmItem);
2016-10-06 22:27:12 -04:00
groupBMEnts.push_back(bmEnt);
if (bookmarkSel == bmEnt) {
bmSelFound = bmItem;
}
2016-10-06 21:08:45 -04:00
}
}
2016-10-06 22:27:12 -04:00
return bmSelFound;
// bookmarksInitialized = true;
2016-10-06 21:08:45 -04:00
// }
2016-09-14 22:49:32 -04:00
}
void BookmarkView::doUpdateActiveList() {
std::vector<DemodulatorInstance *> &demods = wxGetApp().getDemodMgr().getDemodulators();
DemodulatorInstance *activeDemodulator = wxGetApp().getDemodMgr().getActiveDemodulator();
2016-09-14 22:49:32 -04:00
// DemodulatorInstance *lastActiveDemodulator = wxGetApp().getDemodMgr().getLastActiveDemodulator();
// Actives
activeItems.erase(activeItems.begin(),activeItems.end());
2016-09-14 22:49:32 -04:00
m_treeView->DeleteChildren(activeBranch);
wxTreeItemId selItem = nullptr;
for (auto demod_i : demods) {
wxTreeItemId itm = m_treeView->AppendItem(activeBranch,demod_i->getLabel());
activeItems[itm] = demod_i;
if (activeDemodulator) {
if (activeDemodulator == demod_i) {
selItem = itm;
activeSel = demod_i;
}
}
else if (activeSel == demod_i) {
selItem = itm;
}
}
// Recents
BookmarkList bmRecents = wxGetApp().getBookmarkMgr().getRecents();
recentItems.erase(recentItems.begin(),recentItems.end());
m_treeView->DeleteChildren(recentBranch);
for (auto bmr_i: bmRecents) {
wxTreeItemId itm = m_treeView->AppendItem(recentBranch, bmr_i->label);
recentItems[itm] = bmr_i;
if (recentSel == bmr_i) {
selItem = itm;
}
}
if (selItem != nullptr) {
m_treeView->SelectItem(selItem);
}
m_treeView->Enable();
m_treeView->ExpandAll();
}
void BookmarkView::onTreeBeginLabelEdit( wxTreeEvent& event ) {
event.Skip();
}
void BookmarkView::onTreeEndLabelEdit( wxTreeEvent& event ) {
event.Skip();
}
void BookmarkView::onTreeActivate( wxTreeEvent& event ) {
if (recentSel) {
activateBookmark(recentSel);
}
2016-10-06 22:27:12 -04:00
if (bookmarkSel) {
activateBookmark(bookmarkSel);
}
}
void BookmarkView::onTreeCollapse( wxTreeEvent& event ) {
event.Skip();
}
void BookmarkView::onTreeExpanded( wxTreeEvent& event ) {
event.Skip();
}
2016-10-06 21:08:45 -04:00
void BookmarkView::onTreeItemMenu( wxTreeEvent& event ) {
if (m_treeView->GetSelection() == bookmarkBranch) {
wxMenu menu;
menu.Append(wxCONTEXT_ADD_GROUP_ID, "Add Group");
menu.Connect(wxCONTEXT_ADD_GROUP_ID, wxEVT_MENU, (wxObjectEventFunction)&BookmarkView::onMenuItem);
PopupMenu(&menu);
}
}
void BookmarkView::onMenuItem(wxCommandEvent& event) {
if (event.GetId() == wxCONTEXT_ADD_GROUP_ID) {
wxString stringVal = wxGetTextFromUser("Enter Group Name", "Add Group", "");
if (stringVal.ToStdString() != "") {
wxGetApp().getBookmarkMgr().getGroup(stringVal.ToStdString());
wxGetApp().getBookmarkMgr().updateActiveList();
}
}
}
2016-09-28 20:37:39 -04:00
void BookmarkView::hideProps() {
m_frequencyLabel->Hide();
m_frequencyVal->Hide();
m_bandwidthLabel->Hide();
m_bandwidthVal->Hide();
m_modulationVal->Hide();
m_modulationLabel->Hide();
m_labelText->Hide();
m_labelLabel->Hide();
m_bookmarkButton->Hide();
m_activateButton->Hide();
m_removeButton->Hide();
}
void BookmarkView::activeSelection(DemodulatorInstance *dsel) {
activeSel = dsel;
recentSel = nullptr;
2016-09-28 20:37:39 -04:00
m_frequencyVal->SetLabelText(frequencyToStr(dsel->getFrequency()));
m_bandwidthVal->SetLabelText(frequencyToStr(dsel->getBandwidth()));
m_modulationVal->SetLabelText(dsel->getDemodulatorType());
m_labelText->SetValue(dsel->getLabel());
hideProps();
m_frequencyVal->Show();
m_frequencyLabel->Show();
m_bandwidthVal->Show();
m_bandwidthLabel->Show();
m_modulationVal->Show();
m_modulationLabel->Show();
m_labelText->Show();
m_labelLabel->Show();
m_bookmarkButton->Show();
m_removeButton->Show();
this->Layout();
}
void BookmarkView::activateBookmark(BookmarkEntry *bmEnt) {
DemodulatorInstance *newDemod = wxGetApp().getDemodMgr().loadInstance(bmEnt->node);
newDemod->run();
newDemod->setActive(true);
wxGetApp().bindDemodulator(newDemod);
if (bmEnt == recentSel) {
activeSel = newDemod;
recentSel = nullptr;
}
doUpdateActiveList();
}
void BookmarkView::bookmarkSelection(BookmarkEntry *bmSel) {
bookmarkSel = bmSel;
recentSel = nullptr;
activeSel = nullptr;
m_frequencyVal->SetLabelText(frequencyToStr(bmSel->frequency));
m_bandwidthVal->SetLabelText(frequencyToStr(bmSel->bandwidth));
m_modulationVal->SetLabelText(bmSel->type);
m_labelText->SetValue(bmSel->label);
hideProps();
m_frequencyVal->Show();
m_frequencyLabel->Show();
m_bandwidthVal->Show();
m_bandwidthLabel->Show();
m_modulationVal->Show();
m_modulationLabel->Show();
m_labelText->Show();
m_labelLabel->Show();
m_activateButton->Show();
m_bookmarkButton->Show();
m_removeButton->Show();
this->Layout();
}
void BookmarkView::recentSelection(BookmarkEntry *bmSel) {
recentSel = bmSel;
activeSel = nullptr;
bookmarkSel = nullptr;
m_frequencyVal->SetLabelText(frequencyToStr(bmSel->frequency));
m_bandwidthVal->SetLabelText(frequencyToStr(bmSel->bandwidth));
m_modulationVal->SetLabelText(bmSel->type);
m_labelText->SetValue(bmSel->label);
hideProps();
m_frequencyVal->Show();
m_frequencyLabel->Show();
m_bandwidthVal->Show();
m_bandwidthLabel->Show();
m_modulationVal->Show();
m_modulationLabel->Show();
m_labelText->Show();
m_labelLabel->Show();
m_activateButton->Show();
m_bookmarkButton->Show();
m_removeButton->Hide();
this->Layout();
}
void BookmarkView::onTreeSelect( wxTreeEvent& event ) {
2016-09-28 20:37:39 -04:00
if (activeItems.find(event.GetItem()) != activeItems.end()) {
DemodulatorInstance *dsel = activeItems[event.GetItem()];
m_propPanel->Show();
activeSelection(dsel);
wxGetApp().getDemodMgr().setActiveDemodulator(activeSel, false);
} else if (recentItems.find(event.GetItem()) != recentItems.end()) {
recentSel = recentItems[event.GetItem()];
m_propPanel->Show();
recentSelection(recentSel);
2016-09-28 20:37:39 -04:00
} else {
2016-10-06 22:27:12 -04:00
bool bFound = false;
bookmarkSel = nullptr;
for (auto ge_i : groupEntries) {
wxTreeItemId itm = event.GetItem();
for (int i = 0, iMax = ge_i.second.size(); i < iMax; i++) {
if (ge_i.second[i] == itm) {
bookmarkSel = groupBookmarkEntries[ge_i.first][i];
bFound = true;
}
}
}
2016-09-28 20:37:39 -04:00
activeSel = nullptr;
recentSel = nullptr;
2016-10-06 22:27:12 -04:00
if (bFound) {
m_propPanel->Show();
bookmarkSelection(bookmarkSel);
} else {
m_propPanel->Hide();
hideProps();
wxGetApp().getDemodMgr().setActiveDemodulator(activeSel, false);
}
2016-09-28 20:37:39 -04:00
this->Layout();
}
}
void BookmarkView::onTreeSelectChanging( wxTreeEvent& event ) {
event.Skip();
}
void BookmarkView::onLabelText( wxCommandEvent& event ) {
event.Skip();
}
void BookmarkView::onDoubleClickFreq( wxMouseEvent& event ) {
if (activeSel) {
wxGetApp().getDemodMgr().setActiveDemodulator(activeSel, false);
wxGetApp().showFrequencyInput(FrequencyDialog::FrequencyDialogTarget::FDIALOG_TARGET_DEFAULT);
}
}
void BookmarkView::onDoubleClickBandwidth( wxMouseEvent& event ) {
if (activeSel) {
wxGetApp().getDemodMgr().setActiveDemodulator(activeSel, false);
wxGetApp().showFrequencyInput(FrequencyDialog::FrequencyDialogTarget::FDIALOG_TARGET_BANDWIDTH);
}
}
void BookmarkView::onBookmark( wxCommandEvent& event ) {
2016-10-06 22:27:12 -04:00
if (activeSel) {
wxGetApp().getBookmarkMgr().addBookmark("Ungrouped", activeSel);
wxGetApp().getBookmarkMgr().updateBookmarks();
}
}
void BookmarkView::onActivate( wxCommandEvent& event ) {
if (recentSel) {
activateBookmark(recentSel);
}
2016-10-06 22:27:12 -04:00
if (bookmarkSel) {
activateBookmark(bookmarkSel);
}
}
void BookmarkView::onRemove( wxCommandEvent& event ) {
2016-09-28 20:37:39 -04:00
if (activeSel != nullptr) {
wxGetApp().getDemodMgr().setActiveDemodulator(nullptr, false);
wxGetApp().removeDemodulator(activeSel);
wxGetApp().getDemodMgr().deleteThread(activeSel);
activeSel = nullptr;
}
}