]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlVCLog.h
Implemented spellchecking inside insets. Small fixes. Baruchs fix.
[lyx.git] / src / frontends / controllers / ControlVCLog.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  *
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2001 The LyX Team.
8  *
9  * ======================================================
10  *
11  * \file ControlVCLog.h
12  * \author John Levon, moz@compsoc.man.ac.uk
13  * \author Angus Leeming <a.leeming@ic.ac.uk>
14  */
15
16 #ifndef CONTROLVCLOG_H
17 #define CONTROLVCLOG_H
18
19 #ifdef __GNUG__
20 #pragma interface
21 #endif
22
23 #include "ControlDialogs.h"
24 #include "Lsstream.h"
25
26 /**
27  * A controller for the Version Control log viewer.
28  */
29 class ControlVCLog : public ControlDialog<ControlConnectBD> {
30 public:
31         ///
32         ControlVCLog(LyXView &, Dialogs &);
33         /// get a stringstream containing the log file
34         stringstream & getVCLogFile(stringstream & ss) const;
35         /// get the filename of the buffer
36         string const getBufferFileName() const;
37
38 private:
39         ///
40         virtual void apply() {}
41 };
42
43 #endif // CONTROLVCLOG_H