lyx_mirror/src/frontends/qt4/GuiViewSource.h
Abdelrazak Younes ff189f6c70 Rename GuiViewBase to GuiView.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21436 a592a061-630c-0410-9148-cb99ea01b6c8
2007-11-05 13:52:37 +00:00

103 lines
2.0 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 "debug.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(GuiViewSource &);
public Q_SLOTS:
// update content
void updateView();
///
void update(bool full_source);
private:
///
GuiViewSource & controller_;
///
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();
///@}
/// The title displayed by the dialog reflects source type.
QString title() const;
/** get the source code of selected paragraphs, or the whole document
\param fullSource get full source code
*/
QString getContent(bool fullSource);
/** get the cursor position in the source code
*/
std::pair<int, int> getRows() const;
private:
/// The encapsulated widget.
ViewSourceWidget * widget_;
};
} // namespace frontend
} // namespace lyx
#endif // GUIVIEWSOURCE_H