lyx_mirror/src/frontends/qt4/GuiChanges.h
Abdelrazak Younes 9f3c7cf1ea Factorize closeEvent() for GuiDialog based dialogs.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23045 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-17 20:16:14 +00:00

64 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file GuiChanges.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Michael Gerz
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUICHANGES_H
#define GUICHANGES_H
#include "GuiDialog.h"
#include "ui_ChangesUi.h"
#include "support/docstring.h"
namespace lyx {
namespace frontend {
class GuiChanges : public GuiDialog, public Ui::ChangesUi
{
Q_OBJECT
public:
GuiChanges(GuiView & lv);
protected Q_SLOTS:
/// accept the current change
void acceptChange();
/// reject the current change
void rejectChange();
/// find the next change and highlight it
void nextChange();
private:
///
void updateContents();
/// Nothing to initialise in this case.
bool initialiseParams(std::string const &) { return true; }
///
void clearParams() {}
///
void dispatchParams() {}
///
bool isBufferDependent() const { return true; }
/// always true since dispatchParams() is empty
bool canApply() const { return true; }
/// return date of change
docstring changeDate() const;
/// return author of change
docstring changeAuthor() const;
};
} // namespace frontend
} // namespace lyx
#endif // GUICHANGES_H