mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-16 21:10:26 +00:00
c293be56bd
In particular, the directory frontends/qt4 is renamed to frontends/qt. Many configurations file have to be updated. All mentions of qt4 in the source have been audited, and changed to qt if necessary. The only part that has not been updated is the CMake build system.
68 lines
1.6 KiB
C++
68 lines
1.6 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
|
|
{
|
|
Q_OBJECT
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
/// Dialog inherited methods
|
|
//@{
|
|
void applyView() {}
|
|
bool isClosing() const { return false; }
|
|
bool needBufferOpen() const { return false; }
|
|
//@}
|
|
|
|
protected Q_SLOTS:
|
|
void onBufferViewChanged() {} //override
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // DOCK_VIEW_H
|