lyx_mirror/src/frontends/controllers/ControlChanges.h
Angus Leeming f4b2be060f Port the Merge Changes dialog to the Dialog scheme.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6404 a592a061-630c-0410-9148-cb99ea01b6c8
2003-03-09 21:03:43 +00:00

50 lines
964 B
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
*
* Full author contact details are available in file CREDITS
*/
#ifndef CONTROLCHANGES_H
#define CONTROLCHANGES_H
#include "Dialog.h"
/**
* A controller for the merge changes dialog.
*/
class ControlChanges : public Dialog::Controller {
public:
///
ControlChanges(Dialog &);
///
virtual void initialiseParams(string const &) {}
///
virtual void clearParams() {}
///
virtual void dispatchParams() {}
///
virtual bool isBufferDependent() const { return true; }
/// find the next merge chunk and highlight it
void find();
/// return date of change
string const getChangeDate();
/// return author of change
string const getChangeAuthor();
/// accept the current merge
void accept();
/// reject the current merge
void reject();
};
#endif // CONTROLCHANGES_H