mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
3033b52c1c
* added Qt::Drawer flag to TOC * reverted Jürgen's patch (i.e. the source view is docked below the text again), wide drawers are not Mac-like (tm) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18557 a592a061-630c-0410-9148-cb99ea01b6c8
74 lines
1.8 KiB
C++
74 lines
1.8 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 "controllers/Dialog.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
#include <QDockWidget>
|
|
#include <QMainWindow>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/// Dock Widget container for LyX dialogs.
|
|
/// This template class that encapsulates a given Widget inside a
|
|
/// DockWidget and presents a Dialog::View interface
|
|
template<class Controller, class Widget>
|
|
class DockView : public QDockWidget, public Dialog::View
|
|
{
|
|
public:
|
|
DockView(
|
|
Dialog & dialog, ///< The (one) parent Dialog class.
|
|
Controller * form, ///< Associated model/controller
|
|
QMainWindow * parent, ///< the main window where to dock.
|
|
docstring const & title, ///< Window title (shown in the top title bar).
|
|
Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer)
|
|
Qt::WindowFlags flags = 0
|
|
)
|
|
: QDockWidget(toqstr(title), parent, flags),
|
|
Dialog::View(dialog, title)
|
|
{
|
|
if (flags & Qt::Drawer)
|
|
setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
widget_.reset(new Widget(form));
|
|
setWidget(widget_.get());
|
|
parent->addDockWidget(area, this);
|
|
}
|
|
|
|
/// Dialog::View inherited methods
|
|
//@{
|
|
void apply() {}
|
|
void hide() { QDockWidget::hide(); }
|
|
void show() { QDockWidget::show(); }
|
|
bool isVisible() const
|
|
{ return QDockWidget::isVisible(); }
|
|
void redraw() {}
|
|
void update()
|
|
{
|
|
widget_->update();
|
|
QDockWidget::update();
|
|
}
|
|
//@}
|
|
private:
|
|
/// The encapsulated widget.
|
|
boost::scoped_ptr<Widget> widget_;
|
|
};
|
|
|
|
} // frontend
|
|
} // lyx
|
|
|
|
#endif // TOC_WIDGET_H
|