diff options
author | lado <herrlado@gmail.com> | 2013-02-14 23:38:35 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-02-14 23:38:35 +0100 |
commit | f074dc5e46af060154ff6d4b0c34b11cec865504 (patch) | |
tree | 641326b8e313a07ddcf19168c76015118d38ada6 /vdrmanager | |
parent | 3fe4faa24b7312e3b2dbfef1f350aea3eb48e4a6 (diff) | |
download | vdr-manager-f074dc5e46af060154ff6d4b0c34b11cec865504.tar.gz vdr-manager-f074dc5e46af060154ff6d4b0c34b11cec865504.tar.bz2 |
Feature #1253
Diffstat (limited to 'vdrmanager')
-rw-r--r-- | vdrmanager/res/menu/channellist.xml | 16 | ||||
-rw-r--r-- | vdrmanager/res/menu/epg_details.xml | 26 | ||||
-rw-r--r-- | vdrmanager/res/menu/epg_list_item_menu.xml | 29 | ||||
-rw-r--r-- | vdrmanager/res/menu/epg_list_menu.xml | 27 | ||||
-rw-r--r-- | vdrmanager/res/menu/epg_search_time_item_menu.xml | 8 | ||||
-rw-r--r-- | vdrmanager/res/menu/recording_list_menu.xml | 21 | ||||
-rw-r--r-- | vdrmanager/res/menu/refresh_menu.xml | 11 | ||||
-rw-r--r-- | vdrmanager/res/menu/timer_list_menu.xml | 21 |
8 files changed, 159 insertions, 0 deletions
diff --git a/vdrmanager/res/menu/channellist.xml b/vdrmanager/res/menu/channellist.xml new file mode 100644 index 0000000..2ca3884 --- /dev/null +++ b/vdrmanager/res/menu/channellist.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" > + + <item + android:id="@+id/channels_recent_channels" android:alphabeticShortcut="r" + android:icon="@drawable/ic_menu_recent_history" + android:showAsAction="ifRoom" + android:title="@string/recent_channels"/> + + <item + android:id="@+id/channels_groupby" android:alphabeticShortcut="g" + android:icon="@android:drawable/ic_menu_sort_alphabetically" + android:showAsAction="ifRoom" + android:title="@string/menu_groupby"/> + +</menu>
\ No newline at end of file diff --git a/vdrmanager/res/menu/epg_details.xml b/vdrmanager/res/menu/epg_details.xml new file mode 100644 index 0000000..4353b0b --- /dev/null +++ b/vdrmanager/res/menu/epg_details.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" > + + <item + android:id="@+id/epg_details_menu_search_repeat" + android:showAsAction="ifRoom" + android:icon="@drawable/ic_menu_view" + android:title="@string/search_reapt"/> + + <item + android:showAsAction="ifRoom" + android:id="@+id/epg_details_menu_share" + android:icon="@android:drawable/ic_menu_share" + android:title="@string/share"/> + + <item + android:showAsAction="ifRoom" + android:id="@+id/epg_details_menu_add_to_cal" + android:icon="@android:drawable/ic_menu_month" + android:title="@string/addtocal"/> + + <item + android:id="@+id/epg_details_menu_switch" + android:icon="@drawable/ic_menu_goto" + android:title="@string/switch_to_channel"/> +</menu> diff --git a/vdrmanager/res/menu/epg_list_item_menu.xml b/vdrmanager/res/menu/epg_list_item_menu.xml new file mode 100644 index 0000000..7bda366 --- /dev/null +++ b/vdrmanager/res/menu/epg_list_item_menu.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" > + + <item android:id="@+id/epg_item_menu_timer_toggle" + android:title="@string/epg_item_menu_timer_enable" + android:visible="false"/> + + <item + android:id="@+id/epg_item_menu_timer_add" + android:title="@string/epg_item_menu_timer_add"/> + + <item + android:id="@+id/epg_item_menu_timer_delete" + android:title="@string/epg_item_menu_timer_delete" + android:visible="false"/> + + <item + android:id="@+id/epg_item_menu_timer_modify" + android:title="@string/epg_item_menu_timer_modify" + android:visible="false"/> + + <item + android:id="@+id/epg_item_menu_live_tv" + android:title="@string/livetv" + android:visible="false"/> + + <item android:id="@+id/epg_item_menu_switchto" android:title="@string/switch_to_channel" android:visible="true" /> + +</menu>
\ No newline at end of file diff --git a/vdrmanager/res/menu/epg_list_menu.xml b/vdrmanager/res/menu/epg_list_menu.xml new file mode 100644 index 0000000..ea31378 --- /dev/null +++ b/vdrmanager/res/menu/epg_list_menu.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> +<!-- + <item + android:id="@+id/epg_menu_search" + android:icon="@android:drawable/ic_menu_search" + android:title="@string/epg_menu_search"/> +--> +<!-- + <item + android:id="@+id/epg_menu_times" + android:icon="@android:drawable/ic_menu_search" + android:title="@string/epg_menu_times"/> + --> + <item + android:id="@+id/epg_list_menu_channels" + android:icon="@drawable/ic_menu_moreoverflow" + android:showAsAction="ifRoom" + android:title="@string/action_menu_channels"/> + + <item + android:showAsAction="ifRoom" + android:id="@+id/epg_list_sort_menu" + android:icon="@android:drawable/ic_menu_sort_alphabetically" + android:title="@string/sort"/> + +</menu>
\ No newline at end of file diff --git a/vdrmanager/res/menu/epg_search_time_item_menu.xml b/vdrmanager/res/menu/epg_search_time_item_menu.xml new file mode 100644 index 0000000..a54abf0 --- /dev/null +++ b/vdrmanager/res/menu/epg_search_time_item_menu.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + + <item + android:id="@+id/epg_search_time_delete" + android:title="@string/common_delete"/> + +</menu>
\ No newline at end of file diff --git a/vdrmanager/res/menu/recording_list_menu.xml b/vdrmanager/res/menu/recording_list_menu.xml new file mode 100644 index 0000000..2edc02b --- /dev/null +++ b/vdrmanager/res/menu/recording_list_menu.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> +<!-- + <item + android:id="@+id/epg_menu_search" + android:icon="@android:drawable/ic_menu_search" + android:title="@string/epg_menu_search"/> +--> +<!-- + <item + android:id="@+id/epg_menu_times" + android:icon="@android:drawable/ic_menu_search" + android:title="@string/epg_menu_times"/> + --> + + <item + android:id="@+id/menu_groupby" android:alphabeticShortcut="g" + android:icon="@android:drawable/ic_menu_sort_alphabetically" + android:showAsAction="ifRoom" + android:title="@string/menu_groupby"/> +</menu>
\ No newline at end of file diff --git a/vdrmanager/res/menu/refresh_menu.xml b/vdrmanager/res/menu/refresh_menu.xml new file mode 100644 index 0000000..9c31b62 --- /dev/null +++ b/vdrmanager/res/menu/refresh_menu.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" > + + <item + android:id="@+id/list_refresh" + android:alphabeticShortcut="r" + android:icon="@drawable/ic_menu_refresh" + android:showAsAction="ifRoom" + android:title="@string/refresh"/> + +</menu>
\ No newline at end of file diff --git a/vdrmanager/res/menu/timer_list_menu.xml b/vdrmanager/res/menu/timer_list_menu.xml new file mode 100644 index 0000000..fa00a26 --- /dev/null +++ b/vdrmanager/res/menu/timer_list_menu.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> +<!-- + <item + android:id="@+id/epg_menu_search" + android:icon="@android:drawable/ic_menu_search" + android:title="@string/epg_menu_search"/> +--> +<!-- --> + <item + android:id="@+id/timer_menu_add" + android:icon="@android:drawable/ic_menu_add" + android:alphabeticShortcut="a" + android:title="@string/epg_item_menu_timer_add"/> + + <item + android:id="@+id/epg_list_menu_channels" + android:icon="@drawable/ic_menu_moreoverflow" + android:showAsAction="ifRoom" + android:title="@string/action_menu_channels"/> +</menu>
\ No newline at end of file |