comparison libgui/src/m-editor/file-editor-tab.h @ 21310:fc6a9bd59094

backout changeset e8c3590da9ff
author Lachlan Andrew <lachlanbis@gmail.com>
date Sun, 14 Feb 2016 13:16:05 +1100
parents 40de9f8f23a6
children 6c2fd62db1f7
comparison
equal deleted inserted replaced
21309:7fbecef105ca 21310:fc6a9bd59094
41 #endif 41 #endif
42 42
43 #include "find-dialog.h" 43 #include "find-dialog.h"
44 #include "octave-qscintilla.h" 44 #include "octave-qscintilla.h"
45 #include "builtin-defun-decls.h" 45 #include "builtin-defun-decls.h"
46 #include "main-window.h"
47 46
48 #include "marker.h" /* Only needed for typedef of "QIntList", which may be 47 #include "marker.h" /* Only needed for typedef of "QIntList", which may be
49 typedefed elsewhere. Could use common location. */ 48 typedefed elsewhere. Could use common location. */
50 49
51 50
55 { 54 {
56 Q_OBJECT 55 Q_OBJECT
57 56
58 public: 57 public:
59 58
60 file_editor_tab (octave_dock_widget *editor, const QString& directory = ""); 59 file_editor_tab (const QString& directory = "");
61 60
62 ~file_editor_tab (void); 61 ~file_editor_tab (void);
63 62
64 octave_qscintilla *qsci_edit_area () { return _edit_area; } 63 octave_qscintilla *qsci_edit_area () { return _edit_area; }
65 64
256 255
257 QsciScintilla::EolMode detect_eol_mode (); 256 QsciScintilla::EolMode detect_eol_mode ();
258 void update_eol_indicator (); 257 void update_eol_indicator ();
259 258
260 octave_qscintilla *_edit_area; 259 octave_qscintilla *_edit_area;
261 main_window *_main_win;
262 260
263 QStatusBar *_status_bar; 261 QStatusBar *_status_bar;
264 QLabel *_row_indicator; 262 QLabel *_row_indicator;
265 QLabel *_col_indicator; 263 QLabel *_col_indicator;
266 QLabel *_eol_indicator; 264 QLabel *_eol_indicator;