lyx_mirror/src/frontends/controllers/ControlChanges.h
Michael Schmitt bbc332f234 * frontends/qt4/QChanges.C:
* frontends/controllers/ControlChanges.C:
	* frontends/controllers/ControlChanges.h: fix merge-changes dialog;
	remove old cruft; strip interface down to what is really needed


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17019 a592a061-630c-0410-9148-cb99ea01b6c8
2007-02-01 20:48:43 +00:00

61 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file ControlChanges.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 CONTROLCHANGES_H
#define CONTROLCHANGES_H
#include "Dialog.h"
#include "support/docstring.h"
namespace lyx {
namespace frontend {
/**
* A controller for the merge changes dialog.
*/
class ControlChanges : public Dialog::Controller {
public:
///
ControlChanges(Dialog &);
/// Nothing to initialise in this case.
virtual bool initialiseParams(std::string const &) { return true; }
///
virtual void clearParams() {}
///
virtual void dispatchParams() {}
///
virtual bool isBufferDependent() const { return true; }
/// always true since dispatchParams() is empty
virtual bool canApply() const { return true; }
/// find the next change and highlight it
void next();
/// return date of change
lyx::docstring const getChangeDate();
/// return author of change
lyx::docstring const getChangeAuthor();
/// accept the current change
void accept();
/// reject the current change
void reject();
};
} // namespace frontend
} // namespace lyx
#endif // CONTROLCHANGES_H