voicerecorder/group/voicerecorder.rss
branchRCL_3
changeset 13 4e5b531d23cb
parent 7 6aee962f6139
child 14 f962425b9f8b
--- a/voicerecorder/group/voicerecorder.rss	Tue Apr 27 16:40:59 2010 +0300
+++ b/voicerecorder/group/voicerecorder.rss	Tue May 11 16:15:58 2010 +0300
@@ -39,6 +39,7 @@
 #include "voicerecorder.hrh"
 #include "VoiceRecorder.rh"
 #include <voicerecorder.loc>
+#include <mpxwaitnotedialog.loc>
 
 NAME VREC
 
@@ -201,6 +202,44 @@
 RESOURCE TBUF r_qtn_memc_unlock_query1 { buf = qtn_memc_unlock_query1; }
 RESOURCE TBUF r_qtn_memc_set_password_error { buf = qtn_memc_set_password_error; }
 RESOURCE TBUF r_qtn_memc_readonly { buf = qtn_memc_memorycard_read_only; }
+RESOURCE TBUF r_qtn_ccor_insert_mmc { buf = qtn_ccor_insert_mmc; }
+RESOURCE TBUF r_qtn_usb_mode_note_mode { buf = qtn_usb_mode_note_mode_activated; }
+
+RESOURCE DIALOG r_insert_f_card_dialog
+    {
+    flags = EGeneralQueryFlags | EEikDialogFlagWait | EEikDialogFlagNoBackgroundFade;
+    buttons = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
+    items =
+    		{
+    		DLG_LINE
+    			{
+    			type = EAknCtQuery;
+    			id = EGeneralQuery;
+    			control = AVKON_CONFIRMATION_QUERY 
+    				{ 
+    				layout = EConfirmationLayout;
+    				};
+    			}
+    		};
+    } 
+
+RESOURCE DIALOG r_insert_f_usb_plug_in_dialog
+    {
+    flags = EGeneralQueryFlags | EEikDialogFlagWait | EEikDialogFlagNoBackgroundFade;
+    buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
+    items =
+    		{
+    		DLG_LINE
+    			{
+    			type = EAknCtQuery;
+    			id = EGeneralQuery;
+    			control = AVKON_CONFIRMATION_QUERY 
+    				{ 
+    				layout = EConfirmationLayout;
+    				};
+    			}
+    		};
+    } 
 
 // Settings dialog stuff needed when there's an MMC (default store setting)
 // or the voice key is missing (defauly speaker setting)
@@ -2194,3 +2233,23 @@
             }
         };
     }
+
+RESOURCE DIALOG r_vorec_usb_connected_dialog
+    {
+    flags = EAknWaitNoteFlags|EEikDialogFlagModeless;
+    buttons = R_AVKON_SOFTKEYS_BACK;
+    items=
+        {
+        DLG_LINE
+            {
+            type = EAknCtNote;
+            id = EGeneralQuery;
+            control= AVKON_NOTE 
+                { 
+                layout = EWaitLayout;
+                singular_label = qtn_usb_mode_note_mode_activated;
+                animation = R_QGN_GRAF_WAIT_BAR_ANIM;
+                };
+            }
+        };
+    }