diff gui/src/m-editor/file-editor.h @ 14830:41b86dc61306 gui

Removed run command, instead cding into the script directory and executing script directly. * file-editor-interface: Added methods for entering and quitting debug mode. * file-editor-tab: Removed run-command. * file-editor: Implemented methods for entering and quitting debug mode.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 02 Jul 2012 16:06:50 +0200
parents eae0e9f2a8c6
children db3c84d38345
line wrap: on
line diff
--- a/gui/src/m-editor/file-editor.h
+++ b/gui/src/m-editor/file-editor.h
@@ -57,6 +57,9 @@
 
   QMenu *           debug_menu();
 
+  void handle_entered_debug_mode ();
+  void handle_quit_debug_mode ();
+
 public slots:
   void request_new_file ();
   void request_open_file ();
@@ -97,8 +100,9 @@
   QMenuBar *        _menu_bar;
   QToolBar *        _tool_bar;
   QMenu *           _debug_menu;
-  QAction*          _copy_action;
-  QAction*          _cut_action;
+  QAction *         _copy_action;
+  QAction *         _cut_action;
+  QAction *         _run_action;
   QTabWidget *      _tab_widget;
   int               _marker_breakpoint;
   lexer_octave_gui *_lexer;