mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
115 lines
2.3 KiB
C++
115 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
* Copyright (C) 2016 Furrtek
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "afsk.hpp"
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_widget.hpp"
|
|
#include "ui_navigation.hpp"
|
|
|
|
namespace ui {
|
|
|
|
class AFSKSetupView : public View {
|
|
public:
|
|
AFSKSetupView(NavigationView& nav);
|
|
|
|
void focus() override;
|
|
|
|
std::string title() const override { return "AFSK setup"; };
|
|
|
|
private:
|
|
void update_freq(rf::Frequency f);
|
|
|
|
Labels labels {
|
|
{ { 1 * 8, 4 * 8 }, "Frequency:", Color::light_grey() },
|
|
{ { 16 * 8, 5 * 8 }, "Speed:", Color::light_grey() },
|
|
{ { 2 * 8, 13 * 8 }, "Mark: Hz", Color::light_grey() },
|
|
{ { 2 * 8, 15 * 8 }, "Space: Hz", Color::light_grey() },
|
|
{ { 140, 13 * 8 }, "BW: kHz", Color::light_grey() },
|
|
{ { 140, 15 * 8 }, "Repeat:", Color::light_grey() },
|
|
{ { 2 * 8, 19 * 8 }, "Format:", Color::light_grey() }
|
|
};
|
|
|
|
Button button_setfreq {
|
|
{ 8, 48, 104, 32 },
|
|
"----.----"
|
|
};
|
|
|
|
OptionsField options_bps {
|
|
{ 128, 60 },
|
|
7,
|
|
{
|
|
{ "600bps ", 600 },
|
|
{ "1200bps", 1200 },
|
|
{ "2400bps", 2400 },
|
|
{ "4800bps", 4800 },
|
|
{ "9600bps", 9600 }
|
|
}
|
|
};
|
|
|
|
NumberField field_mark {
|
|
{ 64, 104 },
|
|
5,
|
|
{ 100, 15000 },
|
|
25,
|
|
' '
|
|
};
|
|
|
|
NumberField field_space {
|
|
{ 64, 120 },
|
|
5,
|
|
{ 100, 15000 },
|
|
25,
|
|
' '
|
|
};
|
|
|
|
NumberField field_bw {
|
|
{ 172, 104 },
|
|
2,
|
|
{ 1, 50 },
|
|
1,
|
|
' '
|
|
};
|
|
|
|
NumberField field_repeat {
|
|
{ 204, 120 },
|
|
2,
|
|
{ 1, 99 },
|
|
1,
|
|
' '
|
|
};
|
|
|
|
OptionsField options_format {
|
|
{ 80, 152 },
|
|
10,
|
|
{
|
|
}
|
|
};
|
|
|
|
Button button_save {
|
|
{ 72, 250, 96, 40 },
|
|
"Save"
|
|
};
|
|
};
|
|
|
|
} /* namespace ui */
|