2003-02-08 19:18:01 +00:00
|
|
|
// -*- 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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-08 19:18:01 +00:00
|
|
|
*/
|
2003-02-13 16:53:15 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
#ifndef CONTROLCHANGES_H
|
|
|
|
#define CONTROLCHANGES_H
|
|
|
|
|
2003-03-09 21:03:43 +00:00
|
|
|
#include "Dialog.h"
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/**
|
|
|
|
* A controller for the merge changes dialog.
|
|
|
|
*/
|
2003-03-09 21:03:43 +00:00
|
|
|
class ControlChanges : public Dialog::Controller {
|
2003-02-08 19:18:01 +00:00
|
|
|
public:
|
2003-03-09 21:03:43 +00:00
|
|
|
///
|
|
|
|
ControlChanges(Dialog &);
|
2003-07-17 15:35:42 +00:00
|
|
|
/// Nothing to initialise in this case.
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual bool initialiseParams(std::string const &) { return true; }
|
2003-03-09 21:03:43 +00:00
|
|
|
///
|
|
|
|
virtual void clearParams() {}
|
|
|
|
///
|
|
|
|
virtual void dispatchParams() {}
|
|
|
|
///
|
|
|
|
virtual bool isBufferDependent() const { return true; }
|
2005-04-26 09:37:52 +00:00
|
|
|
/// always true since dispatchParams() is empty
|
|
|
|
virtual bool canApply() const { return true; }
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// find the next merge chunk and highlight it
|
2003-03-14 11:31:07 +00:00
|
|
|
bool find();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2006-03-10 16:46:03 +00:00
|
|
|
/// Are there changes to be merged at current location?
|
|
|
|
bool changed();
|
2006-04-05 23:56:29 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/// return date of change
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const getChangeDate();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// return author of change
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const getChangeAuthor();
|
2003-02-13 16:53:15 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/// accept the current merge
|
2004-10-11 14:29:15 +00:00
|
|
|
bool accept();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// reject the current merge
|
2004-10-11 14:29:15 +00:00
|
|
|
bool reject();
|
2003-02-08 19:18:01 +00:00
|
|
|
};
|
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
#endif // CONTROLCHANGES_H
|