mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
3c4e073313
Index: src/frontends/qt4/ui/QErrorListUi.ui Index: src/frontends/qt4/ui/QExternalUi.ui Index: src/frontends/qt4/ui/QSendtoUi.ui Index: src/frontends/qt4/ui/QSpellcheckerUi.ui Index: src/frontends/qt4/ui/QThesaurusUi.ui Index: src/frontends/qt4/ui/QTexinfoUi.ui Index: src/frontends/qt4/ui/QRefUi.ui git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13794 a592a061-630c-0410-9148-cb99ea01b6c8
47 lines
860 B
C++
47 lines
860 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QErrorList.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef QERRORLIST_H
|
|
#define QERRORLIST_H
|
|
|
|
#include "QDialogView.h"
|
|
|
|
class QListWidgetItem;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class ControlErrorList;
|
|
class QErrorListDialog;
|
|
|
|
class QErrorList :
|
|
public QController<ControlErrorList, QView<QErrorListDialog> >
|
|
{
|
|
public:
|
|
friend class QErrorListDialog;
|
|
|
|
QErrorList(Dialog &);
|
|
private:
|
|
/// select an entry
|
|
void select(QListWidgetItem *);
|
|
/// required apply
|
|
virtual void apply() {}
|
|
/// build dialog
|
|
virtual void build_dialog();
|
|
/// update contents
|
|
virtual void update_contents();
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QERRORLIST_H
|