Salome HOME
0022652: [CEA 1194] Redirect the traces from embedded Python console in a log file
[modules/gui.git] / src / PyConsole / PyConsole_Console.h
index 783c6567a1b7cec292a18863ba329d37e6cf9f1b..de909960de54c4c6a1e27a49929abe350436917a 100644 (file)
@@ -44,13 +44,14 @@ public:
   //! Context popup menu actions flags
   enum
   {
-    CopyId         = 0x01,                                                      //!< "Copy" menu action
-    PasteId        = 0x02,                                                      //!< "Paste" menu action
-    ClearId        = 0x04,                                                      //!< "Clear" menu action
-    SelectAllId    = 0x08,                                                      //!< "Select All" menu action
-    DumpCommandsId = 0x10,                                                      //!< "DumpCommands" menu action
-    SaveLogId      = 0x20,                                                      //!< "Save log" menu action
-    All = CopyId | PasteId | ClearId | SelectAllId | DumpCommandsId | SaveLogId //!< all menu actions
+    CopyId         = 0x01,  //!< "Copy" menu action
+    PasteId        = 0x02,  //!< "Paste" menu action
+    ClearId        = 0x04,  //!< "Clear" menu action
+    SelectAllId    = 0x08,  //!< "Select All" menu action
+    DumpCommandsId = 0x10,  //!< "DumpCommands" menu action
+    StartLogId     = 0x20,  //!< "Start log" menu action
+    StopLogId      = 0x40,  //!< "Stop log" menu action
+    All            = 0xFF,  //!< all menu actions 
   };
 
 public: