CubicSDR/src/visual/TuningCanvas.h

85 lines
1.9 KiB
C
Raw Permalink Normal View History

// Copyright (c) Charles J. Cliffe
// SPDX-License-Identifier: GPL-2.0+
#pragma once
#include "wx/glcanvas.h"
#include "wx/timer.h"
#include <vector>
#include <queue>
#include "InteractiveCanvas.h"
#include "TuningContext.h"
#include "MouseTracker.h"
#include "Timer.h"
class TuningCanvas: public InteractiveCanvas {
public:
enum ActiveState {
2015-04-22 22:54:48 -04:00
TUNING_HOVER_NONE, TUNING_HOVER_FREQ, TUNING_HOVER_BW, TUNING_HOVER_PPM, TUNING_HOVER_CENTER
2015-03-26 20:12:54 -04:00
};
enum TuningDirection {
TUNING_DIRECTION_DOWN, TUNING_DIRECTION_UP
};
TuningCanvas(wxWindow *parent, const wxGLAttributes& dispAttrs);
2021-04-04 22:20:33 -04:00
~TuningCanvas() override;
void setHelpTip(std::string tip);
bool changed();
2015-12-07 20:19:03 -05:00
void setHalfBand(bool hb);
2016-02-07 18:01:11 -05:00
void OnKeyDown(wxKeyEvent& event);
void OnKeyUp(wxKeyEvent& event);
2015-12-07 20:19:03 -05:00
ActiveState getHoverState();
private:
void OnPaint(wxPaintEvent& event);
void OnIdle(wxIdleEvent &event);
void OnMouseMoved(wxMouseEvent& event);
void OnMouseDown(wxMouseEvent& event);
void OnMouseWheelMoved(wxMouseEvent& event);
void OnMouseReleased(wxMouseEvent& event);
void OnMouseEnterWindow(wxMouseEvent& event);
void OnMouseLeftWindow(wxMouseEvent& event);
void OnMouseRightDown(wxMouseEvent& event);
void OnMouseRightReleased(wxMouseEvent& event);
2015-04-22 22:54:48 -04:00
void StepTuner(ActiveState state, TuningDirection tuningDir, int digit, bool preventCarry = false, bool zeroOut = false);
TuningContext *glContext;
std::string helpTip;
2015-01-04 19:32:51 -05:00
float dragAccum;
float uxDown;
ActiveState hoverState;
ActiveState downState;
2015-03-26 20:12:54 -04:00
int hoverIndex;
int downIndex;
bool dragging;
2015-03-26 20:12:54 -04:00
float freqDP;
float freqW;
float bwDP;
float bwW;
float centerDP;
float centerW;
2015-03-26 22:45:52 -04:00
bool top;
bool bottom;
2015-04-22 22:54:48 -04:00
int currentPPM;
int lastPPM;
long long freq, bw, center;
2015-12-07 20:19:03 -05:00
bool halfBand;
//
wxDECLARE_EVENT_TABLE();
};