mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
94 lines
2.0 KiB
C++
94 lines
2.0 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_widget.hpp"
|
|
#include "ui_painter.hpp"
|
|
#include "ui_menu.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "ui_font_fixed_8x16.hpp"
|
|
#include "clock_manager.hpp"
|
|
#include "message.hpp"
|
|
#include "rf_path.hpp"
|
|
#include "max2837.hpp"
|
|
#include "volume.hpp"
|
|
#include "transmitter_model.hpp"
|
|
|
|
namespace ui {
|
|
|
|
class AFSKSetupView : public View {
|
|
public:
|
|
AFSKSetupView(NavigationView& nav, TransmitterModel& transmitter_model);
|
|
|
|
void updfreq(rf::Frequency f);
|
|
void focus() override;
|
|
void paint(Painter& painter) override;
|
|
|
|
private:
|
|
//rf::Frequency f = 162950000;
|
|
TransmitterModel& transmitter_model;
|
|
|
|
Text text_title {
|
|
{ 40, 32, 160, 16 },
|
|
"AFSK modulator setup"
|
|
};
|
|
|
|
Button button_setfreq {
|
|
{ 8, 64, 104, 32 },
|
|
"---.----M"
|
|
};
|
|
Button button_setbps {
|
|
{ 128, 64, 96, 32 },
|
|
"----bps"
|
|
};
|
|
|
|
Text text_mark {
|
|
{ 16, 104, 48, 16 },
|
|
"Mark: Hz"
|
|
};
|
|
NumberField field_mark {
|
|
{ 64, 104 },
|
|
5,
|
|
{ 100, 32000 },
|
|
100,
|
|
' '
|
|
};
|
|
|
|
Text text_space {
|
|
{ 16, 120, 48, 16 },
|
|
"Space: Hz"
|
|
};
|
|
NumberField field_space {
|
|
{ 64, 120 },
|
|
5,
|
|
{ 100, 32000 },
|
|
100,
|
|
' '
|
|
};
|
|
|
|
Button button_done {
|
|
{ 72, 200, 96, 48 },
|
|
"Save"
|
|
};
|
|
};
|
|
|
|
} /* namespace ui */
|