2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
* \file GuiErrorList.h
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alfredo Braunstein
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
#ifndef GUIERRORLIST_H
|
|
|
|
#define GUIERRORLIST_H
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
#include "GuiDialog.h"
|
2007-08-31 22:16:11 +00:00
|
|
|
#include "ControlErrorList.h"
|
2007-08-11 15:48:15 +00:00
|
|
|
#include "ui_ErrorListUi.h"
|
2007-04-25 10:25:37 +00:00
|
|
|
|
2006-05-03 19:51:15 +00:00
|
|
|
class QListWidgetItem;
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
class GuiErrorListDialog : public GuiDialog, public Ui::ErrorListUi
|
|
|
|
{
|
2007-04-25 10:25:37 +00:00
|
|
|
Q_OBJECT
|
2007-09-05 20:33:29 +00:00
|
|
|
|
2007-04-25 10:25:37 +00:00
|
|
|
public:
|
2007-09-05 20:33:29 +00:00
|
|
|
GuiErrorListDialog(LyXView & lv);
|
2007-04-25 10:25:37 +00:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void select_adaptor(QListWidgetItem *);
|
2007-09-05 20:33:29 +00:00
|
|
|
|
|
|
|
private:
|
2007-04-25 10:25:37 +00:00
|
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
void showEvent(QShowEvent *);
|
2007-08-31 22:16:11 +00:00
|
|
|
/// parent controller
|
2007-09-11 18:33:42 +00:00
|
|
|
ControlErrorList & controller();
|
2006-03-05 17:24:44 +00:00
|
|
|
/// select an entry
|
2006-05-03 19:51:15 +00:00
|
|
|
void select(QListWidgetItem *);
|
2006-03-05 17:24:44 +00:00
|
|
|
/// update contents
|
2007-09-11 18:33:42 +00:00
|
|
|
void updateContents();
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
#endif // GUIERRORLIST_H
|