mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
11474f6b89
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33222 a592a061-630c-0410-9148-cb99ea01b6c8
54 lines
1.0 KiB
C++
54 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file WorkAreaManager.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef WORKAREA_MANAGER_H
|
|
#define WORKAREA_MANAGER_H
|
|
|
|
#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 remove(WorkArea * wa);
|
|
///
|
|
void redrawAll(bool update_metrics);
|
|
///
|
|
void closeAll();
|
|
/// Update window titles of all users.
|
|
void updateTitles();
|
|
|
|
private:
|
|
typedef std::list<WorkArea *>::iterator iterator;
|
|
///
|
|
std::list<WorkArea *> work_areas_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // BASE_WORKAREA_H
|