logsui/group/AocCtMenus.rss
changeset 0 e686773b3f54
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/logsui/group/AocCtMenus.rss	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,142 @@
+/*
+* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+
+
+
+/**
+ *  AoC's view's OK options list menu bar.
+ */
+RESOURCE MENU_BAR r_aocct_aoc_ok_menubar
+    {
+    titles = 
+        {
+        MENU_TITLE { menu_pane = r_aocct_ct_menu_top; }
+        };
+    }
+
+
+
+/**
+ *  CT's view's OK options list menu bar.
+ */
+RESOURCE MENU_BAR r_aocct_ct_ok_menubar
+    {
+    titles = 
+        {
+        MENU_TITLE
+            {
+            menu_pane = r_aocct_ct_menu_top;
+            }
+        };
+    }
+
+/**
+ *  AoC's menu bar
+ */
+RESOURCE MENU_PANE r_aocct_aoc_menu
+    {
+    items = 
+        {
+        MENU_ITEM 
+            {
+            command = EAocCtCmdMenuClear;
+            txt = qtn_logs_aoc_cmd_clear;
+            }
+        };
+    }
+
+/**
+ *  AoC state's menu bar
+ */
+/* RESOURCE MENU_BAR r_aocct_aoc_menubar
+    {
+    titles = 
+        {
+        MENU_TITLE 
+            {
+            menu_pane = r_logs_system_menu_bottom;
+            },                        
+        MENU_TITLE 
+            { 
+            menu_pane = r_aocct_aoc_menu; 
+            }
+        };                  
+    } */
+
+
+/**
+ *  Menu items for context and options menu
+ */
+RESOURCE MENU_PANE r_aocct_ct_menu_top
+    {
+    items = 
+        {
+        MENU_ITEM 
+            {
+            cascade=r_aocct_ct_details_submenu; 
+            command=EAocCtCmdMenuDetails;       //Duration details
+            txt=qtn_ctim_cmd_details;
+            },
+        MENU_ITEM 
+            {
+            command = EAocCtCmdMenuClear;
+            txt = qtn_ctim_cmd_clear_all;
+            },
+        MENU_ITEM
+            {
+            command = EAocCtCmdMenuFilterAls;
+            txt = qtn_ctim_cmd_filter_als;
+            }
+        };
+    }
+    
+
+/**
+ *  Duration details submenu
+ */
+RESOURCE MENU_PANE r_aocct_ct_details_submenu
+    {
+    items=
+        {
+        MENU_ITEM { command=EAocCtCmdMenuDetailsCs; txt=qtn_ctim_cmd_details_cs; },
+        MENU_ITEM { command=EAocCtCmdMenuDetailsVoip; txt=qtn_ctim_cmd_details_voip; }        
+        };
+    }
+
+/**
+ *  Options menu
+ */
+RESOURCE MENU_BAR r_aocct_ct_menubar
+    {
+    titles = 
+        {
+        MENU_TITLE { menu_pane = r_logs_system_menu_bottom; },                       
+        MENU_TITLE { menu_pane = r_aocct_ct_menu_top; }
+        };                  
+    }
+
+/**
+ *  AoC view's definition
+ */
+RESOURCE AVKON_VIEW r_aocct_ct_view
+    {
+    menubar = r_aocct_ct_menubar;
+    cba = r_common_options_back_context; 
+    }
+
+// End of File