mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
*neutrino keybind_setup: remember last selected item
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1008 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -62,6 +62,7 @@ CKeybindSetup::CKeybindSetup()
|
|||||||
hheight = g_Font[SNeutrinoSettings::FONT_TYPE_MENU_TITLE]->getHeight();
|
hheight = g_Font[SNeutrinoSettings::FONT_TYPE_MENU_TITLE]->getHeight();
|
||||||
mheight = g_Font[SNeutrinoSettings::FONT_TYPE_MENU]->getHeight();
|
mheight = g_Font[SNeutrinoSettings::FONT_TYPE_MENU]->getHeight();
|
||||||
height = hheight+13*mheight+ 10;
|
height = hheight+13*mheight+ 10;
|
||||||
|
selected = -1;
|
||||||
x = getScreenStartX (width);
|
x = getScreenStartX (width);
|
||||||
y = getScreenStartY (height);
|
y = getScreenStartY (height);
|
||||||
}
|
}
|
||||||
@@ -174,7 +175,7 @@ void CKeybindSetup::showKeySetup()
|
|||||||
|
|
||||||
//keybindings menu
|
//keybindings menu
|
||||||
CMenuWidget* bindSettings = new CMenuWidget(LOCALE_MAINSETTINGS_HEAD, NEUTRINO_ICON_KEYBINDING, width);
|
CMenuWidget* bindSettings = new CMenuWidget(LOCALE_MAINSETTINGS_HEAD, NEUTRINO_ICON_KEYBINDING, width);
|
||||||
|
keySettings->setSelected(selected);
|
||||||
keySettings->addIntroItems(LOCALE_MAINSETTINGS_KEYBINDING);
|
keySettings->addIntroItems(LOCALE_MAINSETTINGS_KEYBINDING);
|
||||||
|
|
||||||
//keybindings
|
//keybindings
|
||||||
@@ -204,6 +205,7 @@ void CKeybindSetup::showKeySetup()
|
|||||||
|
|
||||||
keySettings->exec(NULL, "");
|
keySettings->exec(NULL, "");
|
||||||
keySettings->hide();
|
keySettings->hide();
|
||||||
|
selected = keySettings->getSelected();
|
||||||
delete keySettings;
|
delete keySettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -85,7 +85,7 @@ class CKeybindSetup : public CMenuTarget
|
|||||||
CKeySetupNotifier *keySetupNotifier;
|
CKeySetupNotifier *keySetupNotifier;
|
||||||
CKeyChooser * keychooser[KEYBINDS_COUNT];
|
CKeyChooser * keychooser[KEYBINDS_COUNT];
|
||||||
|
|
||||||
int x, y, width, height, hheight, mheight;
|
int x, y, width, height, hheight, mheight, selected;
|
||||||
|
|
||||||
void hide();
|
void hide();
|
||||||
void showKeySetup();
|
void showKeySetup();
|
||||||
|
Reference in New Issue
Block a user