mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 06:03:36 +00:00
bcbf7c6452
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26940 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
1.9 KiB
C++
97 lines
1.9 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiViewSource.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Bo Peng
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUIVIEWSOURCE_H
|
|
#define GUIVIEWSOURCE_H
|
|
|
|
#include "ui_ViewSourceUi.h"
|
|
|
|
#include "DockView.h"
|
|
#include "GuiView.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include <QDockWidget>
|
|
#include <QString>
|
|
#include <QTextCharFormat>
|
|
|
|
class QTextDocument;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiViewSource;
|
|
class LaTeXHighlighter;
|
|
|
|
class ViewSourceWidget : public QWidget, public Ui::ViewSourceUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ViewSourceWidget();
|
|
///
|
|
void setBufferView(BufferView const * bv);
|
|
|
|
public Q_SLOTS:
|
|
// update content
|
|
void updateView();
|
|
|
|
private:
|
|
///
|
|
BufferView const * bv_;
|
|
///
|
|
QTextDocument * document_;
|
|
/// LaTeX syntax highlighter
|
|
LaTeXHighlighter * highlighter_;
|
|
};
|
|
|
|
|
|
class GuiViewSource : public DockView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiViewSource(
|
|
GuiView & parent, ///< the main window where to dock.
|
|
Qt::DockWidgetArea area = Qt::BottomDockWidgetArea, ///< Position of the dock (and also drawer)
|
|
Qt::WindowFlags flags = 0);
|
|
|
|
~GuiViewSource();
|
|
|
|
/// Controller inherited method.
|
|
///@{
|
|
bool initialiseParams(std::string const & source);
|
|
void clearParams() {}
|
|
void dispatchParams() {}
|
|
bool isBufferDependent() const { return true; }
|
|
bool canApply() const { return true; }
|
|
bool canApplyToReadOnly() const { return true; }
|
|
void updateView();
|
|
void enableView(bool enable);
|
|
void saveSession() const;
|
|
void restoreSession();
|
|
bool wantInitialFocus() const { return false; }
|
|
///@}
|
|
|
|
/// The title displayed by the dialog reflects source type.
|
|
QString title() const;
|
|
|
|
private:
|
|
/// The encapsulated widget.
|
|
ViewSourceWidget * widget_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUIVIEWSOURCE_H
|