comparison gui/src/m-editor/file-editor-tab.h @ 14825:eae0e9f2a8c6 gui

Added menus, markers and methods to visualize debugging in the editor and add, remove and navigate breakpoints* . * arrow_right.png: Icon to indicate debugger position. * redled.png: Icon for a breakpoint. * file-editor-tab: Added methods to add/remove breakpoints and menu entries. * file-editor: Added methods to add/remove breakpoints and menu entries. * resource.qrc: Added new icons to resource file.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 02 Jul 2012 09:31:30 +0200
parents a565c560e654
children 6b90737f69cc
comparison
equal deleted inserted replaced
14824:9c0959a1dc7b 14825:eae0e9f2a8c6
44 void uncomment_selected_text (); 44 void uncomment_selected_text ();
45 void remove_bookmark (); 45 void remove_bookmark ();
46 void toggle_bookmark (); 46 void toggle_bookmark ();
47 void next_bookmark (); 47 void next_bookmark ();
48 void previous_bookmark (); 48 void previous_bookmark ();
49 void remove_breakpoint ();
50 void toggle_breakpoint ();
51 void next_breakpoint ();
52 void previous_breakpoint ();
49 void cut (); 53 void cut ();
50 void copy (); 54 void copy ();
51 void paste (); 55 void paste ();
52 void undo (); 56 void undo ();
53 void redo (); 57 void redo ();
58 void set_debugger_position (int line);
54 59
55 void set_modified (bool modified = true); 60 void set_modified (bool modified = true);
56 61
57 bool open_file (); 62 bool open_file ();
58 void load_file (QString fileName); 63 void load_file (QString fileName);