view gui/src/editor/FileEditorInterface.h @ 14681:66ff321cb62e gui

Integrated the editor to be docked with the other widgets. * FilesDockWidget: Some code style corrections. * MainWindow: Added a checkable menu entry for the editor and added file editor as dockable widget. * FileEditor: Moved setting the object name to the interface. * FileEditorInterface: Added routines to correctly handle closing and opening the dock widget.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Thu, 24 May 2012 13:20:27 +0200
parents 35512b788af2
children
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 FILEEDITORINTERFACE_H
#define FILEEDITORINTERFACE_H

#include <QDockWidget>

class QTerminal;
class MainWindow;

class FileEditorInterface : public QDockWidget
{
  Q_OBJECT

  public:
    FileEditorInterface (QTerminal *terminal, MainWindow *mainWindow)
      : QDockWidget ((QWidget*)mainWindow) // QDockWidget constructor is explicit, hence the cast.
    {
      setObjectName ("FileEditor");
      m_terminal = terminal;
      m_mainWindow = mainWindow;

      connect (this, SIGNAL (visibilityChanged (bool)), this, SLOT (handleVisibilityChanged (bool)));
    }

    virtual ~FileEditorInterface () { }
  public slots:
    virtual void requestNewFile () = 0;
    virtual void requestOpenFile () = 0;
    virtual void requestOpenFile (QString fileName) = 0;

  signals:
      void activeChanged (bool active);

  protected:
    QTerminal* m_terminal;
    MainWindow* m_mainWindow;

    void closeEvent (QCloseEvent *event)
    {
      emit activeChanged (false);
      QDockWidget::closeEvent (event);
    }

  protected slots:
    void handleVisibilityChanged (bool visible)
    {
      if (visible)
        emit activeChanged (true);
    }
};

#endif // FILEEDITORINTERFACE_H