]> git.lyx.org Git - lyx.git/blob - src/support/FileMonitor.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / FileMonitor.h
1 // -*- C++ -*-
2 /**
3  * \file FileMonitor.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  *
11  * FileMonitor monitors a file and informs a listener when that file has
12  * changed.
13  */
14
15 #ifndef FILEMONITOR_H
16 #define FILEMONITOR_H
17
18 #include "LString.h"
19
20 #include <boost/utility.hpp>
21 #include <boost/scoped_ptr.hpp>
22 #include <boost/signals/signal0.hpp>
23
24 namespace lyx {
25 namespace support {
26
27 class FileMonitor : boost::noncopyable {
28 public:
29         /** Once monitoring begins, the file will be monitored every
30          *  interval ms.
31          */
32         FileMonitor(string const & file_with_path, int interval);
33
34         /// Define an empty d-tor out-of-line to keep boost::scoped_ptr happy.
35         ~FileMonitor();
36
37         ///
38         void reset(string const & file_with_path) const;
39
40         ///
41         string const & filename() const;
42
43         /// Begin monitoring the file
44         void start() const;
45         ///
46         void stop() const;
47         ///
48         bool monitoring() const;
49
50         /** The checksum is recomputed whenever the file is modified.
51          *  If the file is not being monitored, then the checksum will be
52          *  recomputed each time this function is called.
53          */
54         unsigned long checksum() const;
55
56         /// Connect and you'll be informed when the file has changed.
57         typedef boost::signal0<void>::slot_type slot_type;
58         ///
59         boost::signals::connection connect(slot_type const &) const;
60
61 private:
62         /// Use the Pimpl idiom to hide the internals.
63         class Impl;
64
65         /// The pointer never changes although *pimpl_'s contents may.
66         boost::scoped_ptr<Impl> const pimpl_;
67 };
68
69 } // namespace support
70 } // namespace lyx
71
72 #endif // FILEMONITOR_H