Commit 5f8c0412 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Maemo: use left button by default for gestures (not tested)

There is only one button on a touch screen.
parent 1ce334be
...@@ -86,6 +86,12 @@ static void RunIntf ( intf_thread_t *p_intf ); ...@@ -86,6 +86,12 @@ static void RunIntf ( intf_thread_t *p_intf );
#define BUTTON_LONGTEXT N_( \ #define BUTTON_LONGTEXT N_( \
"Trigger button for mouse gestures." ) "Trigger button for mouse gestures." )
#if defined (HAVE_MAEMO)
# define BUTTON_DEFAULT "left"
#else
# define BUTTON_DEFAULT "right"
#endif
static const char *const button_list[] = { "left", "middle", "right" }; static const char *const button_list[] = { "left", "middle", "right" };
static const char *const button_list_text[] = static const char *const button_list_text[] =
{ N_("Left"), N_("Middle"), N_("Right") }; { N_("Left"), N_("Middle"), N_("Right") };
...@@ -96,7 +102,7 @@ vlc_module_begin () ...@@ -96,7 +102,7 @@ vlc_module_begin ()
set_subcategory( SUBCAT_INTERFACE_CONTROL ) set_subcategory( SUBCAT_INTERFACE_CONTROL )
add_integer( "gestures-threshold", 30, NULL, add_integer( "gestures-threshold", 30, NULL,
THRESHOLD_TEXT, THRESHOLD_LONGTEXT, true ) THRESHOLD_TEXT, THRESHOLD_LONGTEXT, true )
add_string( "gestures-button", "right", NULL, add_string( "gestures-button", BUTTON_DEFAULT, NULL,
BUTTON_TEXT, BUTTON_LONGTEXT, false ) BUTTON_TEXT, BUTTON_LONGTEXT, false )
change_string_list( button_list, button_list_text, 0 ) change_string_list( button_list, button_list_text, 0 )
set_description( N_("Mouse gestures control interface") ) set_description( N_("Mouse gestures control interface") )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment