[Avidemux-svn-commit] r6736 - in branches/avidemux_2.6_branch_mean/avidemux/common: . ADM_commonUI

mean at mail.berlios.de mean at mail.berlios.de
Mon Nov 8 08:04:09 CET 2010


Author: mean
Date: 2010-11-08 08:04:09 +0100 (Mon, 08 Nov 2010)
New Revision: 6736

Modified:
   branches/avidemux_2.6_branch_mean/avidemux/common/ADM_commonUI/myOwnMenu.h
   branches/avidemux_2.6_branch_mean/avidemux/common/A_functions.h
   branches/avidemux_2.6_branch_mean/avidemux/common/gui_action.names
   branches/avidemux_2.6_branch_mean/avidemux/common/gui_save.cpp
Log:
[Jobs] Add Queue entry placeholder in menu

Modified: branches/avidemux_2.6_branch_mean/avidemux/common/ADM_commonUI/myOwnMenu.h
===================================================================
--- branches/avidemux_2.6_branch_mean/avidemux/common/ADM_commonUI/myOwnMenu.h	2010-11-08 06:30:02 UTC (rev 6735)
+++ branches/avidemux_2.6_branch_mean/avidemux/common/ADM_commonUI/myOwnMenu.h	2010-11-08 07:04:09 UTC (rev 6736)
@@ -31,6 +31,7 @@
             {MENU_ACTION,"Open",    NULL,ACT_OPEN_VIDEO,       MKICON(fileopen), "Ctrl+O"},
             {MENU_ACTION,"Append",  NULL,ACT_APPEND_VIDEO     ,NULL,             "Ctrl+A"},
             {MENU_ACTION,"Save",    NULL,ACT_SAVE_VIDEO       ,MKICON(filesaveas),"Ctrl+S"},
+            {MENU_ACTION,"Queue",   NULL,ACT_SAVE_QUEUE       ,NULL              ,"Ctrl+U"},
             {MENU_SUBMENU,"Save as Image",    NULL,ACT_DUMMY    ,NULL,NULL},
             {MENU_SUBACTION,"Save as BMP",    NULL,ACT_SAVE_BMP ,NULL,NULL},
             {MENU_SUBACTION,"Save as Jpeg",   NULL,ACT_SAVE_JPG ,NULL,NULL},

Modified: branches/avidemux_2.6_branch_mean/avidemux/common/A_functions.h
===================================================================
--- branches/avidemux_2.6_branch_mean/avidemux/common/A_functions.h	2010-11-08 06:30:02 UTC (rev 6735)
+++ branches/avidemux_2.6_branch_mean/avidemux/common/A_functions.h	2010-11-08 07:04:09 UTC (rev 6736)
@@ -31,7 +31,7 @@
 void 			A_saveAudioDecoded	(char *name);
 void 			A_saveAVI		(char *name);
 void 			A_playAvi		(void);
-
+void            A_queueJob      (void);
 int  A_saveAudioCopy (const char *name);
 int  A_saveJpg (const char *name);
 int  A_saveBunchJpg(const char *name);

Modified: branches/avidemux_2.6_branch_mean/avidemux/common/gui_action.names
===================================================================
--- branches/avidemux_2.6_branch_mean/avidemux/common/gui_action.names	2010-11-08 06:30:02 UTC (rev 6735)
+++ branches/avidemux_2.6_branch_mean/avidemux/common/gui_action.names	2010-11-08 07:04:09 UTC (rev 6736)
@@ -18,6 +18,7 @@
 ACT(SAVE_AUDIO)
 ACT(SAVE_JS_PROJECT)
 ACT(SAVE_PY_PROJECT)
+ACT(SAVE_QUEUE)
 ACT(SAVE_END)
 
 // Project

Modified: branches/avidemux_2.6_branch_mean/avidemux/common/gui_save.cpp
===================================================================
--- branches/avidemux_2.6_branch_mean/avidemux/common/gui_save.cpp	2010-11-08 06:30:02 UTC (rev 6735)
+++ branches/avidemux_2.6_branch_mean/avidemux/common/gui_save.cpp	2010-11-08 07:04:09 UTC (rev 6736)
@@ -45,6 +45,9 @@
 {
     switch(action)
     {
+    case ACT_SAVE_QUEUE:
+            GUI_Error_HIG("!","Not implemented yet.");
+            break;
     case ACT_SAVE_PY_PROJECT:
             GUI_FileSelWrite (QT_TR_NOOP("Select pyProject to Save"), A_savePyProject);
             UI_refreshCustomMenu();




More information about the Avidemux-svn-commit mailing list