2015-07-08 11:39:24 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UI_SPECTRUM_H__
|
|
|
|
#define __UI_SPECTRUM_H__
|
|
|
|
|
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_widget.hpp"
|
2015-08-01 17:31:51 -04:00
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
#include "event_m0.hpp"
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
#include "message.hpp"
|
|
|
|
|
|
|
|
#include <cstdint>
|
2015-12-16 22:33:30 -05:00
|
|
|
#include <cstddef>
|
2015-12-02 16:38:17 -05:00
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
namespace ui {
|
|
|
|
namespace spectrum {
|
|
|
|
|
|
|
|
class FrequencyScale : public Widget {
|
|
|
|
public:
|
2015-12-16 22:33:30 -05:00
|
|
|
void on_show() override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-23 20:53:16 -05:00
|
|
|
void set_spectrum_sampling_rate(const int new_sampling_rate);
|
|
|
|
void set_channel_filter(const int pass_frequency, const int stop_frequency);
|
2015-07-21 00:55:51 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void paint(Painter& painter) override;
|
2015-07-21 00:55:51 -04:00
|
|
|
|
|
|
|
private:
|
2016-01-23 20:53:16 -05:00
|
|
|
static constexpr int filter_band_height = 4;
|
2015-07-21 00:55:51 -04:00
|
|
|
|
2016-01-23 20:53:16 -05:00
|
|
|
int spectrum_sampling_rate { 0 };
|
|
|
|
const int spectrum_bins = std::tuple_size<decltype(ChannelSpectrum::db)>::value;
|
|
|
|
int channel_filter_pass_frequency { 0 };
|
|
|
|
int channel_filter_stop_frequency { 0 };
|
2015-07-21 00:55:51 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void clear();
|
|
|
|
void clear_background(Painter& painter, const Rect r);
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void draw_frequency_ticks(Painter& painter, const Rect r);
|
|
|
|
void draw_filter_ranges(Painter& painter, const Rect r);
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class WaterfallView : public Widget {
|
|
|
|
public:
|
2015-12-16 22:33:30 -05:00
|
|
|
void on_show() override;
|
|
|
|
void on_hide() override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void paint(Painter& painter) override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void on_channel_spectrum(const ChannelSpectrum& spectrum);
|
2015-10-16 22:36:07 -04:00
|
|
|
|
|
|
|
private:
|
2015-12-16 22:33:30 -05:00
|
|
|
void clear();
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class WaterfallWidget : public View {
|
|
|
|
public:
|
2015-12-16 22:33:30 -05:00
|
|
|
WaterfallWidget();
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void on_show() override;
|
|
|
|
void on_hide() override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void set_parent_rect(const Rect new_parent_rect) override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void paint(Painter& painter) override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
WaterfallView waterfall_view;
|
|
|
|
FrequencyScale frequency_scale;
|
2016-01-31 01:23:22 -05:00
|
|
|
ChannelSpectrumFIFO* fifo { nullptr };
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
MessageHandlerRegistration message_handler_spectrum_config {
|
|
|
|
Message::ID::ChannelSpectrumConfig,
|
|
|
|
[this](const Message* const p) {
|
|
|
|
const auto message = *reinterpret_cast<const ChannelSpectrumConfigMessage*>(p);
|
|
|
|
this->fifo = message.fifo;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
MessageHandlerRegistration message_handler_frame_sync {
|
|
|
|
Message::ID::DisplayFrameSync,
|
|
|
|
[this](const Message* const) {
|
|
|
|
if( this->fifo ) {
|
|
|
|
ChannelSpectrum channel_spectrum;
|
|
|
|
while( fifo->out(channel_spectrum) ) {
|
|
|
|
this->on_channel_spectrum(channel_spectrum);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-16 22:33:30 -05:00
|
|
|
void on_channel_spectrum(const ChannelSpectrum& spectrum);
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace spectrum */
|
|
|
|
} /* namespace ui */
|
|
|
|
|
|
|
|
#endif/*__UI_SPECTRUM_H__*/
|