lyx_mirror/src/frontends/qt4/DockView.h
Vincent van Ravesteijn f8d64b4799 Fix bug #3871: Shortcut to switch from TOC to text pane.
M-o now switches to the TOC pane, and Esc always returns from any DockView to the main window.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34293 a592a061-630c-0410-9148-cb99ea01b6c8
2010-04-26 10:03:09 +00:00

80 lines
1.7 KiB
C++

// -*- C++ -*-
/**
* \file DockView.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef DOCK_VIEW_H
#define DOCK_VIEW_H
#include "Dialog.h"
#include "GuiView.h"
#include <QDockWidget>
#include <QKeyEvent>
namespace lyx {
namespace frontend {
/// Dock Widget container for LyX dialogs.
/**
* This template class that encapsulates a given Widget inside a
* QDockWidget and presents a Dialog interface
* FIXME: create a DockView.cpp file
**/
class DockView : public QDockWidget, public Dialog
{
public:
DockView(
GuiView & parent, ///< the main window where to dock.
QString const & name, ///< dialog identifier.
QString const & title, ///< dialog title.
Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer)
Qt::WindowFlags flags = 0
)
: QDockWidget(&parent, flags), Dialog(parent, name, title)
{
setObjectName(name);
parent.addDockWidget(area, this);
hide();
}
virtual ~DockView() {}
virtual QWidget * asQWidget() { return this; }
virtual QWidget const * asQWidget() const { return this; }
/// We don't want to restore geometry session for dock widgets.
void restoreSession() {}
void keyPressEvent(QKeyEvent * ev)
{
if (ev->key() == Qt::Key_Escape) {
QMainWindow * mw = static_cast<QMainWindow *>(parent());
if (!mw) {
ev->ignore();
return;
}
mw->activateWindow();
mw->setFocus();
ev->accept();
}
}
/// Dialog inherited methods
//@{
void applyView() {}
bool isClosing() const { return false; }
bool needBufferOpen() const { return false; }
//@}
};
} // frontend
} // lyx
#endif // DOCK_VIEW_H