moviebrowser: add possibility to search for movies in SMS-style

This feature has to be activated first. Menu -> Settings ->
Key Setup -> Edit -> My recordings

In moviebrowser press three times key "3" to select first movie
title starting with a "F" or press two times "6" to select first
movie title starting with a "N".

The new item in keybind-setup is the first step to introduce user-
assignable keys in moviebrowser. So finally the horrible hotkeys
for the cutting functions can be removed and/or replaced.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 0a98143e49
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-02-09 (Tue, 09 Feb 2016)

Origin message was:
------------------
- moviebrowser: add possibility to search for movies in SMS-style

This feature has to be activated first. Menu -> Settings ->
Key Setup -> Edit -> My recordings

In moviebrowser press three times key "3" to select first movie
title starting with a "F" or press two times "6" to select first
movie title starting with a "N".

The new item in keybind-setup is the first step to introduce user-
assignable keys in moviebrowser. So finally the horrible hotkeys
for the cutting functions can be removed and/or replaced.


------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-02-09 12:05:28 +01:00
parent c9e2d4794c
commit e082799691
10 changed files with 106 additions and 8 deletions

View File

@@ -4208,6 +4208,7 @@ void CNeutrinoApp::loadKeys(const char * fname)
g_settings.bouquetlist_mode = tconfig.getInt32( "bouquetlist_mode", 0 );
g_settings.sms_channel = tconfig.getInt32( "sms_channel", 0 );
g_settings.sms_movie = tconfig.getInt32( "sms_movie", 0 );
g_settings.mode_left_right_key_tv = tconfig.getInt32( "mode_left_right_key_tv", SNeutrinoSettings::ZAP);
g_settings.key_help = tconfig.getInt32( "key_help", CRCInput::RC_help );
@@ -4284,6 +4285,7 @@ void CNeutrinoApp::saveKeys(const char * fname)
tconfig.setInt32( "bouquetlist_mode", g_settings.bouquetlist_mode );
tconfig.setInt32( "sms_channel", g_settings.sms_channel );
tconfig.setInt32( "sms_movie", g_settings.sms_movie );
tconfig.setInt32( "mode_left_right_key_tv", g_settings.mode_left_right_key_tv );
tconfig.setInt32( "key_help", g_settings.key_help );