2015-11-20 01:59:09 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-02-04 04:27:53 -05:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-11-20 01:59:09 -05:00
|
|
|
*
|
|
|
|
* 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"
|
2016-04-21 16:12:51 -04:00
|
|
|
#include "core_control.hpp"
|
2015-11-20 01:59:09 -05:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2016-05-11 06:45:03 -04:00
|
|
|
enum ViewID {
|
2023-05-18 16:16:05 -04:00
|
|
|
Receiver,
|
|
|
|
AudioTX,
|
|
|
|
CloseCall,
|
|
|
|
Xylos,
|
|
|
|
EPAR,
|
|
|
|
LCR,
|
|
|
|
SoundBoard,
|
|
|
|
AnalogAudio,
|
|
|
|
RDS,
|
|
|
|
Jammer
|
2016-05-11 06:45:03 -04:00
|
|
|
};
|
|
|
|
|
2015-11-20 01:59:09 -05:00
|
|
|
class LoadModuleView : public View {
|
2023-05-18 16:16:05 -04:00
|
|
|
public:
|
|
|
|
LoadModuleView(NavigationView& nav, const char* hash, ViewID viewid);
|
|
|
|
void loadmodule();
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
void on_show() override;
|
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
int load_image(void);
|
|
|
|
const char* _hash;
|
|
|
|
bool _mod_loaded = false;
|
|
|
|
|
|
|
|
Text text_info{
|
|
|
|
{8, 64, 224, 16},
|
|
|
|
"-"};
|
|
|
|
Text text_infob{
|
|
|
|
{8, 64 + 16, 224, 16},
|
|
|
|
"-"};
|
|
|
|
|
|
|
|
Button button_ok{
|
|
|
|
{88, 128, 64, 32},
|
|
|
|
"OK"};
|
2015-11-20 01:59:09 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|