2015-01-02 21:32:24 -05:00
|
|
|
#include "InteractiveCanvas.h"
|
|
|
|
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !wxUSE_GLCANVAS
|
|
|
|
#error "OpenGL required: set wxUSE_GLCANVAS to 1 and rebuild the library"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "CubicSDR.h"
|
|
|
|
#include "CubicSDRDefs.h"
|
|
|
|
#include "AppFrame.h"
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include <wx/numformatter.h>
|
|
|
|
|
|
|
|
InteractiveCanvas::InteractiveCanvas(wxWindow *parent, int *attribList) :
|
|
|
|
wxGLCanvas(parent, wxID_ANY, attribList, wxDefaultPosition, wxDefaultSize,
|
2015-01-03 17:07:39 -05:00
|
|
|
wxFULL_REPAINT_ON_RESIZE), parent(parent), shiftDown(false), altDown(false), ctrlDown(false), centerFreq(0), bandwidth(0), lastBandwidth(0), isView(
|
2015-01-02 22:44:09 -05:00
|
|
|
false) {
|
2015-01-03 17:07:39 -05:00
|
|
|
mouseTracker.setTarget(this);
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
InteractiveCanvas::~InteractiveCanvas() {
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::setView(int center_freq_in, int bandwidth_in) {
|
2015-01-02 21:32:24 -05:00
|
|
|
isView = true;
|
2015-01-03 17:07:39 -05:00
|
|
|
centerFreq = center_freq_in;
|
2015-01-02 21:32:24 -05:00
|
|
|
bandwidth = bandwidth_in;
|
2015-01-03 17:07:39 -05:00
|
|
|
lastBandwidth = 0;
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::disableView() {
|
2015-01-02 21:32:24 -05:00
|
|
|
isView = false;
|
2015-01-03 17:07:39 -05:00
|
|
|
centerFreq = wxGetApp().getFrequency();
|
2015-01-02 21:32:24 -05:00
|
|
|
bandwidth = SRATE;
|
2015-01-03 17:07:39 -05:00
|
|
|
lastBandwidth = 0;
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
int InteractiveCanvas::getFrequencyAt(float x) {
|
|
|
|
int iqCenterFreq = getCenterFrequency();
|
|
|
|
int iqBandwidth = getBandwidth();
|
2015-01-02 21:32:24 -05:00
|
|
|
int freq = iqCenterFreq - (int) (0.5 * (float) iqBandwidth) + (int) ((float) x * (float) iqBandwidth);
|
|
|
|
|
|
|
|
return freq;
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::setCenterFrequency(unsigned int center_freq_in) {
|
|
|
|
centerFreq = center_freq_in;
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
unsigned int InteractiveCanvas::getCenterFrequency() {
|
2015-01-02 21:32:24 -05:00
|
|
|
if (isView) {
|
2015-01-03 17:07:39 -05:00
|
|
|
return centerFreq;
|
2015-01-02 21:32:24 -05:00
|
|
|
} else {
|
|
|
|
return (unsigned int) wxGetApp().getFrequency();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::setBandwidth(unsigned int bandwidth_in) {
|
2015-01-02 21:32:24 -05:00
|
|
|
bandwidth = bandwidth_in;
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
unsigned int InteractiveCanvas::getBandwidth() {
|
2015-01-02 21:32:24 -05:00
|
|
|
if (isView) {
|
|
|
|
return bandwidth;
|
|
|
|
} else {
|
|
|
|
return SRATE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void InteractiveCanvas::OnKeyUp(wxKeyEvent& event) {
|
|
|
|
shiftDown = event.ShiftDown();
|
|
|
|
altDown = event.AltDown();
|
|
|
|
ctrlDown = event.ControlDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InteractiveCanvas::OnKeyDown(wxKeyEvent& event) {
|
|
|
|
float angle = 5.0;
|
|
|
|
|
|
|
|
shiftDown = event.ShiftDown();
|
|
|
|
altDown = event.AltDown();
|
|
|
|
ctrlDown = event.ControlDown();
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::OnMouseMoved(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseMoved(event);
|
2015-01-02 21:32:24 -05:00
|
|
|
|
|
|
|
shiftDown = event.ShiftDown();
|
|
|
|
altDown = event.AltDown();
|
|
|
|
ctrlDown = event.ControlDown();
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::OnMouseDown(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseDown(event);
|
2015-01-02 21:32:24 -05:00
|
|
|
|
|
|
|
shiftDown = event.ShiftDown();
|
|
|
|
altDown = event.AltDown();
|
|
|
|
ctrlDown = event.ControlDown();
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::OnMouseWheelMoved(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseWheelMoved(event);
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::OnMouseReleased(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseReleased(event);
|
2015-01-02 21:32:24 -05:00
|
|
|
|
|
|
|
shiftDown = event.ShiftDown();
|
|
|
|
altDown = event.AltDown();
|
|
|
|
ctrlDown = event.ControlDown();
|
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::OnMouseLeftWindow(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseLeftWindow(event);
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 17:07:39 -05:00
|
|
|
void InteractiveCanvas::OnMouseEnterWindow(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseEnterWindow(event);
|
2015-01-02 21:32:24 -05:00
|
|
|
}
|
|
|
|
|
2015-01-02 22:44:09 -05:00
|
|
|
void InteractiveCanvas::setStatusText(std::string statusText) {
|
|
|
|
((wxFrame*) parent)->GetStatusBar()->SetStatusText(statusText);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InteractiveCanvas::setStatusText(std::string statusText, int value) {
|
|
|
|
((wxFrame*) parent)->GetStatusBar()->SetStatusText(
|
|
|
|
wxString::Format(statusText.c_str(), wxNumberFormatter::ToString((long) value, wxNumberFormatter::Style_WithThousandsSep)));
|
|
|
|
}
|
2015-01-03 17:07:39 -05:00
|
|
|
|
|
|
|
void InteractiveCanvas::OnMouseRightDown(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseRightDown(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InteractiveCanvas::OnMouseRightReleased(wxMouseEvent& event) {
|
|
|
|
mouseTracker.OnMouseRightReleased(event);
|
|
|
|
}
|