]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiViewSource.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiViewSource.h
index 93459360239da638c87355949f1190963511b39e..d5553ac2ea49a606234bdb7f470f9a7f0fc48e95 100644 (file)
 #ifndef GUIVIEWSOURCE_H
 #define GUIVIEWSOURCE_H
 
-#include "ControlViewSource.h"
-#include "GuiDialog.h"
-#include "Application.h"
 #include "ui_ViewSourceUi.h"
 
-#include <QWidget>
-#include <QSyntaxHighlighter>
+#include "DockView.h"
+#include "GuiView.h"
+#include "qt_helpers.h"
+
+#include <QDockWidget>
+#include <QString>
 #include <QTextCharFormat>
 
 class QTextDocument;
@@ -28,49 +29,25 @@ class QTextDocument;
 namespace lyx {
 namespace frontend {
 
-// used already twice...
-class LaTeXHighlighter : public QSyntaxHighlighter
-{
-public:
-       LaTeXHighlighter(QTextDocument * parent);
-
-protected:
-       void highlightBlock(QString const & text);
-
-private:
-       QTextCharFormat commentFormat;
-       QTextCharFormat keywordFormat;
-       QTextCharFormat mathFormat;
-};
-
-
 class GuiViewSource;
+class LaTeXHighlighter;
 
-class GuiViewSourceDialog : public QWidget, public Ui::ViewSourceUi {
+class ViewSourceWidget : public QWidget, public Ui::ViewSourceUi
+{
        Q_OBJECT
+
 public:
-       GuiViewSourceDialog(GuiViewSource * form);
+       ViewSourceWidget();
+       ///
+       void setBufferView(BufferView const * bv);
 
 public Q_SLOTS:
        // update content
-       void update();
+       void updateView();
 
 private:
-       GuiViewSource * form_;
-};
-
-
-///
-class GuiViewSource : public QObject, public ControlViewSource {
-public:
        ///
-       GuiViewSource(GuiDialog &);
-       ///
-       QTextDocument * document() { return document_; }
-       ///
-       void update(bool full_source);
-
-private:
+       BufferView const * bv_;
        ///
        QTextDocument * document_;
        /// LaTeX syntax highlighter
@@ -78,6 +55,41 @@ private:
 };
 
 
+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