view libgui/src/m-editor/file-editor-tab.h @ 15196:017f0b2e6933

rename gui directory to libgu * libgui: Rename from gui. * .hgsub (libgui/qterminal): Rename from gui/qterminal. * Makefile.am (GUIDIR): Set to libgui instead of gui if AMCOND_BUILD_GUI is true. * configure.ac (AC_CONFIG_FILES): Update list for directory renaming. * Makefile.am (.NOTPARALLEL): Delete. List octave.html/index.html as the primary HTML target, not octave.html. (octave.html): New target for making the octave.html directory. (octave.pdf): Depend on octave.dvi. * images.awk: In generated rules for png files, depend on octave.html, not octave.html/index.html. * src/Makefile.am (OCTAVE_GUI_CPPFLAGS, OCTAVE_GUI_LIBS): Update for directory renaming. (CLEANFILES): Fix typo. * fntests.m (src_tree): Use libinterp, not src.
author John W. Eaton <jwe@octave.org>
date Sat, 18 Aug 2012 18:10:09 -0400
parents gui/src/m-editor/file-editor-tab.h@4c4f2fb07a50
children 359098ad343e
line wrap: on
line source

/* OctaveGUI - A graphical user interface for Octave
 * Copyright (C) 2011 Jacob Dawid (jacob.dawid@googlemail.com)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef FILEEDITORTAB_H
#define FILEEDITORTAB_H

#include <Qsci/qsciscintilla.h>
#include <QWidget>
#include <QCloseEvent>
#include <QFileSystemWatcher>
#include "octave-event-observer.h"

class file_editor;
class file_editor_tab : public QWidget, public octave_event_observer
{
  Q_OBJECT
public:
  file_editor_tab (file_editor *fileEditor);
  bool copy_available ();

  void event_accepted (octave_event *e);
  void event_reject (octave_event *e);

public slots:
  void update_window_title(bool modified);
  void handle_copy_available(bool enableCopy);
  void handle_margin_clicked (int line, int margin, Qt::KeyboardModifiers state);
  void comment_selected_text ();
  void uncomment_selected_text ();
  void find ();
  void remove_bookmark ();
  void toggle_bookmark ();
  void next_bookmark ();
  void previous_bookmark ();
  void remove_all_breakpoints ();
  void toggle_breakpoint ();
  void next_breakpoint ();
  void previous_breakpoint ();
  void cut ();
  void copy ();
  void paste ();
  void undo ();
  void redo ();
  void set_debugger_position (int line);

  void set_modified (bool modified = true);

  bool open_file ();
  void load_file (QString fileName);
  void new_file ();
  bool save_file ();
  bool save_file(QString saveFileName);
  bool save_file_as();
  void run_file ();

  void file_has_changed (QString fileName);

signals:
  void file_name_changed (QString fileName);
  void editor_state_changed ();
  void close_request ();

protected:
  void closeEvent (QCloseEvent *event);
  void set_file_name (QString fileName);

private:
  void update_lexer ();
  void request_add_breakpoint (int line);
  void request_remove_breakpoint (int line);

  void update_tracked_file ();
  int check_file_modified (QString msg, int cancelButton);
  void do_comment_selected_text (bool comment);

  file_editor *         _file_editor;
  QsciScintilla *       _edit_area;

  QString               _file_name;
  QString               _file_name_short;

  bool                  _long_title;
  bool                  _copy_available;

  QFileSystemWatcher    _file_system_watcher;
};

#endif // FILEEDITORTAB_H