]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlVCLog.h
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlVCLog.h
1 // -*- C++ -*-
2 /**
3  * \file ControlVCLog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef CONTROLVCLOG_H
14 #define CONTROLVCLOG_H
15
16 #include "Dialog.h"
17
18 class ControlVCLog : public Dialog::Controller {
19 public:
20         ///
21         ControlVCLog(Dialog &);
22         /// Nothing to initialise in this case.
23         virtual bool initialiseParams(string const &) { return true; }
24         ///
25         virtual void clearParams() {}
26         ///
27         virtual void dispatchParams() {}
28         ///
29         virtual bool isBufferDependent() const { return true; }
30         /// put the log file into the ostream
31         void getVCLogFile(std::ostream & ss) const;
32         /// get the filename of the buffer
33         string const getBufferFileName() const;
34 };
35
36 #endif // CONTROLVCLOG_H