/* * Copyright (C) OpenTX * * Based on code named * th9x - http://code.google.com/p/th9x * er9x - http://code.google.com/p/er9x * gruvin9x - http://code.google.com/p/gruvin9x * * License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * 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. */ #include "opentx.h" void drawStringWithIndex(coord_t x, coord_t y, const pm_char * str, uint8_t idx, LcdFlags flags) { if (flags & RIGHT) { lcdDrawNumber(x, y, idx, flags); lcdDrawText(x-FWNUM, y, str, flags & ~LEADING0); } else { lcdDrawText(x, y, str, flags & ~LEADING0); lcdDrawNumber(lcdNextPos, y, idx, flags|LEFT, 2); } } #if defined(CPUARM) FlightModesType editFlightModes(coord_t x, coord_t y, event_t event, FlightModesType value, uint8_t attr) { int posHorz = menuHorizontalPosition; for (uint8_t p=0; p 0) { int8_t c = name[cur]; int8_t v = c; if (IS_NEXT_EVENT(event) || IS_PREVIOUS_EVENT(event)) { if (attr == ZCHAR) { v = checkIncDec(event, abs(v), 0, ZCHAR_MAX, 0); if (c <= 0) v = -v; } else { v = checkIncDec(event, abs(v), '0', 'z', 0); } } switch (event) { case EVT_KEY_BREAK(KEY_ENTER): if (s_editMode == EDIT_MODIFY_FIELD) { s_editMode = EDIT_MODIFY_STRING; cur = 0; } else if (cur < size - 1) cur++; else s_editMode = 0; break; #if !defined(PCBTARANIS) case EVT_KEY_BREAK(KEY_LEFT): if (cur>0) cur--; break; case EVT_KEY_BREAK(KEY_RIGHT): if (cur= -26 && v <= 26) { v = -v; // toggle case } } else { if (v == ' ') { s_editMode = 0; killEvents(event); break; } else if (v >= 'A' && v <= 'Z') { v = 'a' + v - 'A'; // toggle case } else if (v >= 'a' && v <= 'z') { v = 'A' + v - 'a'; // toggle case } } #if !defined(PCBTARANIS) if (event==EVT_KEY_LONG(KEY_LEFT)) killEvents(KEY_LEFT); #endif break; } if (c != v) { name[cur] = v; storageDirty(menuVerticalPositions[0] == 0 ? EE_MODEL : EE_GENERAL); } if (attr == ZCHAR) { lcdDrawChar(x+editNameCursorPos*FW, y, idx2char(v), ERASEBG|INVERS|FIXEDWIDTH); } else { lcdDrawChar(x+editNameCursorPos*FW, y, v, ERASEBG|INVERS|FIXEDWIDTH); } } else { cur = 0; } editNameCursorPos = cur; lcdNextPos = backupNextPos; } } #endif void gvarWeightItem(coord_t x, coord_t y, MixData * md, LcdFlags attr, event_t event) { u_int8int16_t weight; MD_WEIGHT_TO_UNION(md, weight); weight.word = GVAR_MENU_ITEM(x, y, weight.word, GV_RANGELARGE_WEIGHT_NEG, GV_RANGELARGE_WEIGHT, attr, 0, event); MD_UNION_TO_WEIGHT(weight, md); } #if defined(CPUARM) void drawGVarName(coord_t x, coord_t y, int8_t idx, LcdFlags flags) { char s[8]; getGVarString(s, idx); lcdDrawText(x, y, s, flags); } #endif