|
|
|
|
@ -22,7 +22,7 @@ in the source distribution for its full text. |
|
|
|
|
// we call them "Styles".
|
|
|
|
|
static const char* const MetersFunctions[] = {"Style ", "Move ", " ", "Delete", "Done ", NULL}; |
|
|
|
|
static const char* const MetersKeys[] = {"Space", "Enter", " ", "Del", "F10"}; |
|
|
|
|
static int MetersEvents[] = {' ', 13, ERR, KEY_DC, KEY_F(10)}; |
|
|
|
|
static const int MetersEvents[] = {' ', 13, ERR, KEY_DC, KEY_F(10)}; |
|
|
|
|
|
|
|
|
|
// We avoid UTF-8 arrows ← → here as they might display full-width on Chinese
|
|
|
|
|
// terminals, breaking our aligning.
|
|
|
|
|
@ -30,7 +30,7 @@ static int MetersEvents[] = {' ', 13, ERR, KEY_DC, KEY_F(10)}; |
|
|
|
|
// considered "Ambiguous characters".
|
|
|
|
|
static const char* const MetersMovingFunctions[] = {"Style ", "Lock ", "Up ", "Down ", "Left ", "Right ", " ", "Delete", "Done ", NULL}; |
|
|
|
|
static const char* const MetersMovingKeys[] = {"Space", "Enter", "Up", "Dn", "<-", "->", " ", "Del", "F10"}; |
|
|
|
|
static int MetersMovingEvents[] = {' ', 13, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, ERR, KEY_DC, KEY_F(10)}; |
|
|
|
|
static const int MetersMovingEvents[] = {' ', 13, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, ERR, KEY_DC, KEY_F(10)}; |
|
|
|
|
static FunctionBar* Meters_movingBar = NULL; |
|
|
|
|
|
|
|
|
|
void MetersPanel_cleanup() { |
|
|
|
|
|