]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiErrorList.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiErrorList.h
index e0a7eb3f9403a22f72463219e2ea9e5f187dc47d..b36255a150aa879422632e87f6f9810b7d6b0aed 100644 (file)
@@ -13,7 +13,7 @@
 #define GUIERRORLIST_H
 
 #include "GuiDialog.h"
-#include "ControlErrorList.h"
+#include "ErrorList.h"
 #include "ui_ErrorListUi.h"
 
 class QListWidgetItem;
@@ -21,25 +21,46 @@ class QListWidgetItem;
 namespace lyx {
 namespace frontend {
 
-class GuiErrorListDialog : public GuiDialog, public Ui::ErrorListUi
+class GuiErrorList : public GuiDialog, public Ui::ErrorListUi
 {
        Q_OBJECT
 
 public:
-       GuiErrorListDialog(LyXView & lv);
+       GuiErrorList(GuiView & lv);
 
 public Q_SLOTS:
-       void select_adaptor(QListWidgetItem *);
+       /// select an entry
+       void select();
+       /// open the LaTeX log
+       void viewLog();
 
 private:
-       void closeEvent(QCloseEvent *);
+       ///
        void showEvent(QShowEvent *);
-       /// parent controller
-       ControlErrorList & controller();
-       /// select an entry
-       void select(QListWidgetItem *);
-       /// update contents
-       void updateContents();
+       ///
+       void paramsToDialog();
+       ///
+       bool isBufferDependent() const { return true; }
+       ///
+       bool initialiseParams(std::string const & data);
+       ///
+       void clearParams() {}
+       ///
+       void dispatchParams() {}
+       ///
+       bool canApply() const { return true; }
+
+       /// goto this error in the parent bv. Returns success.
+       bool goTo(int item);
+       ///
+       ErrorList const & errorList() const;
+private:
+       ///
+       std::string error_type_;
+       /// the parent document name
+       docstring name_;
+       ///
+       bool from_master_;
 };
 
 } // namespace frontend