mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-22 17:12:29 +02:00
InputManager: removed "clear" and "manual" logical buttons.
These are not used in the GUI anymore.
This commit is contained in:
parent
a685b436ec
commit
28f6cd2122
@ -1,7 +1,5 @@
|
||||
accept=keyboard,306
|
||||
cancel=keyboard,308
|
||||
clear=keyboard,32
|
||||
manual=keyboard,304
|
||||
altleft=keyboard,9
|
||||
altright=keyboard,8
|
||||
menu=keyboard,27
|
||||
|
@ -1,7 +1,5 @@
|
||||
cancel=keyboard,104 #NanoNote H
|
||||
accept=keyboard,13 #NanoNote Enter
|
||||
clear=keyboard,120 #NanoNote X
|
||||
manual=keyboard,121 #NanoNote Y
|
||||
altleft=keyboard,108 #NanoNote L
|
||||
altright=keyboard,9 #NanoNote Tab
|
||||
menu=keyboard,283 #Nanonote F2
|
||||
|
@ -1,7 +1,5 @@
|
||||
cancel=keyboard,122
|
||||
accept=keyboard,120
|
||||
clear=keyboard,115
|
||||
manual=keyboard,121
|
||||
altleft=keyboard,113
|
||||
altright=keyboard,112
|
||||
menu=keyboard,27
|
||||
|
@ -74,8 +74,6 @@ void InputManager::readConfFile(const string &conffile) {
|
||||
else if (name == "right") button = RIGHT;
|
||||
else if (name == "accept") button = ACCEPT;
|
||||
else if (name == "cancel") button = CANCEL;
|
||||
else if (name == "clear") button = CLEAR;
|
||||
else if (name == "manual") button = MANUAL;
|
||||
else if (name == "altleft") button = ALTLEFT;
|
||||
else if (name == "altright") button = ALTRIGHT;
|
||||
else if (name == "menu") button = MENU;
|
||||
|
@ -29,13 +29,12 @@ public:
|
||||
enum Button {
|
||||
UP, DOWN, LEFT, RIGHT,
|
||||
ACCEPT, CANCEL,
|
||||
CLEAR, MANUAL,
|
||||
ALTLEFT, ALTRIGHT,
|
||||
MENU, SETTINGS,
|
||||
VOLUP, VOLDOWN,
|
||||
POWER, LOCK
|
||||
};
|
||||
#define BUTTON_TYPE_SIZE 16
|
||||
#define BUTTON_TYPE_SIZE 14
|
||||
|
||||
enum ButtonState { PRESSED, RELEASED };
|
||||
struct ButtonEvent {
|
||||
|
@ -49,8 +49,6 @@ MessageBox::MessageBox(GMenu2X *gmenu2x, const string &text, const string &icon)
|
||||
buttonLabels[InputManager::RIGHT] = "right";
|
||||
buttonLabels[InputManager::CANCEL] = "cancel";
|
||||
buttonLabels[InputManager::ACCEPT] = "accept";
|
||||
buttonLabels[InputManager::CLEAR] = "x";
|
||||
buttonLabels[InputManager::MANUAL] = "y";
|
||||
buttonLabels[InputManager::ALTLEFT] = "l";
|
||||
buttonLabels[InputManager::ALTRIGHT] = "r";
|
||||
buttonLabels[InputManager::SETTINGS] = "start";
|
||||
|
Loading…
Reference in New Issue
Block a user