mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
bb5b02a362
Add Button to GuiChanges. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29110 a592a061-630c-0410-9148-cb99ea01b6c8
66 lines
1.3 KiB
C++
66 lines
1.3 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();
|
|
/// find the previous change and highlight it
|
|
void previousChange();
|
|
|
|
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
|