2015-11-20 01:59:09 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-12-05 06:56:41 -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.
|
|
|
|
*/
|
|
|
|
|
2016-05-29 06:06:47 -04:00
|
|
|
#ifndef __ALPHANUM_H__
|
|
|
|
#define __ALPHANUM_H__
|
|
|
|
|
2015-11-20 01:59:09 -05:00
|
|
|
#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"
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
class AlphanumView : public View {
|
|
|
|
public:
|
2017-02-01 03:53:26 -05:00
|
|
|
std::function<void(char *)> on_changed { };
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
AlphanumView(NavigationView& nav, char txt[], size_t max_length);
|
2017-01-15 22:45:44 -05:00
|
|
|
|
|
|
|
AlphanumView(const AlphanumView&) = delete;
|
|
|
|
AlphanumView(AlphanumView&&) = delete;
|
|
|
|
AlphanumView& operator=(const AlphanumView&) = delete;
|
|
|
|
AlphanumView& operator=(AlphanumView&&) = delete;
|
|
|
|
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
void paint(Painter& painter) override;
|
2015-11-20 01:59:09 -05:00
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
char * value();
|
2016-12-09 12:21:47 -05:00
|
|
|
|
|
|
|
std::string title() const override { return "Text entry"; };
|
2015-11-20 01:59:09 -05:00
|
|
|
|
|
|
|
private:
|
2016-12-09 12:21:47 -05:00
|
|
|
const char * const keys_upper = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ. !<";
|
|
|
|
const char * const keys_lower = "0123456789abcdefghijklmnopqrstuvwxyz:=?<";
|
|
|
|
|
2017-02-01 03:53:26 -05:00
|
|
|
size_t _max_length { };
|
|
|
|
uint8_t txtidx { 0 };
|
2015-11-20 01:59:09 -05:00
|
|
|
bool _lowercase = false;
|
2016-12-05 06:56:41 -05:00
|
|
|
char txtinput[29] = { 0 }; // 28 chars max
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
void char_add(const char c);
|
|
|
|
void char_delete();
|
2016-12-09 12:21:47 -05:00
|
|
|
void set_keys(const char * const key_list);
|
2016-05-27 03:26:43 -04:00
|
|
|
void move_cursor();
|
2016-12-09 12:21:47 -05:00
|
|
|
void on_button(Button& button);
|
|
|
|
void update_text();
|
2015-11-20 01:59:09 -05:00
|
|
|
|
|
|
|
Text text_input {
|
2016-12-25 19:31:38 -05:00
|
|
|
{ 8, 0, 232, 16 }
|
2015-11-20 01:59:09 -05:00
|
|
|
};
|
|
|
|
|
2017-02-03 03:21:12 -05:00
|
|
|
std::array<Button, 40> buttons { };
|
2015-11-20 01:59:09 -05:00
|
|
|
|
|
|
|
Button button_lowercase {
|
2016-12-09 12:21:47 -05:00
|
|
|
{ 21 * 8, 270, 32, 24 },
|
2015-11-20 01:59:09 -05:00
|
|
|
"UC"
|
|
|
|
};
|
2016-07-25 10:21:27 -04:00
|
|
|
|
2016-08-01 14:06:17 -04:00
|
|
|
NumberField raw_char {
|
|
|
|
{ 16, 270 },
|
2016-07-25 10:21:27 -04:00
|
|
|
3,
|
|
|
|
{ 1, 255 },
|
|
|
|
1,
|
|
|
|
'0'
|
2016-08-01 14:06:17 -04:00
|
|
|
};
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
Button button_ok {
|
2015-11-20 01:59:09 -05:00
|
|
|
{ 88, 270, 64, 24 },
|
2016-12-09 12:21:47 -05:00
|
|
|
"OK"
|
2015-11-20 01:59:09 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
2016-05-29 06:06:47 -04:00
|
|
|
|
|
|
|
#endif/*__ALPHANUM_H__*/
|