]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkAreaManager.h
Add missing initialization
[lyx.git] / src / frontends / WorkAreaManager.h
index 7ff32127bbe4510e80b6eba73f0b503c2982848a..dfef00e6f69168cb2b679f1eff37b6845bbac2b8 100644 (file)
 #ifndef WORKAREA_MANAGER_H
 #define WORKAREA_MANAGER_H
 
-#include <vector>
+#include <list>
 
 namespace lyx {
 namespace frontend {
 
 class WorkArea;
 
+/// \c WorkArea Manager.
+/**
+  * This is a helper class designed to avoid signal/slot connections
+  * between a \c Buffer and the potentially multiple \c WorkArea(s)
+  * used to visualize this Buffer contents.
+  */
 class WorkAreaManager
 {
 public:
+       ///
        WorkAreaManager() {}
-
        ///
        void add(WorkArea * wa);
-
        ///
-       void redrawAll();
-
+       void remove(WorkArea * wa);
+       ///
+       void redrawAll(bool update_metrics);
        ///
        void closeAll();
+       /// Update window titles of all users.
+       void updateTitles();
 
 private:
-       std::vector<WorkArea *> work_areas_;
+       typedef std::list<WorkArea *>::iterator iterator;
+       ///
+       std::list<WorkArea *> work_areas_;
 };
 
 } // namespace frontend