1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-03 16:47:30 +03:00
gmenu2x/src/helppopup.cpp
Nebuleon Fumika 2a2634b364 Remove all touch-screen-related code
It didn't work anymore, at all. Touchscreen polling occurred only
*after* waiting for a button had completed. So the touchscreen events,
if any, would be ignored until the user had pressed a button, possibly
firing off another action with that button press and forwarding the
touchscreen event to the next interface that got brought up as a
result.

Reusing this code and fixing it would require far more work than
rewriting everything anew with touchscreen devices in mind from the
beginning.

MtH: Resolved conflicts, mainly from the GMenu2X pointer to reference
     change I did on 2015-04-21.
2015-04-24 01:44:56 +02:00

39 lines
1001 B
C++

// Various authors.
// License: GPL version 2 or later.
#include "helppopup.h"
#include "gmenu2x.h"
HelpPopup::HelpPopup(GMenu2X& gmenu2x)
: gmenu2x(gmenu2x)
{
}
void HelpPopup::paint(Surface& s) {
Font& font = *gmenu2x.font;
Translator &tr = gmenu2x.tr;
int helpBoxHeight = 154;
s.box(10, 50, 300, helpBoxHeight + 4,
gmenu2x.skinConfColors[COLOR_MESSAGE_BOX_BG]);
s.rectangle(12, 52, 296, helpBoxHeight,
gmenu2x.skinConfColors[COLOR_MESSAGE_BOX_BORDER]);
font.write(s, tr["CONTROLS"], 20, 60);
#if defined(PLATFORM_A320) || defined(PLATFORM_GCW0)
font.write(s, tr["A: Launch link / Confirm action"], 20, 80);
font.write(s, tr["B: Show this help menu"], 20, 95);
font.write(s, tr["L, R: Change section"], 20, 110);
font.write(s, tr["SELECT: Show contextual menu"], 20, 155);
font.write(s, tr["START: Show options menu"], 20, 170);
#endif
}
bool HelpPopup::handleButtonPress(InputManager::Button button) {
if (button == InputManager::CANCEL) {
dismiss();
}
return true;
}