lyx_mirror/src/frontends/controllers/ControlConnections.h
Lars Gullik Bjønnes b881ed2d5a Use Buffer const reference in most placees possible.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7623 a592a061-630c-0410-9148-cb99ea01b6c8
2003-08-28 07:41:31 +00:00

148 lines
3.8 KiB
C++

// -*- C++ -*-
/**
* \file ControlConnections.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*
* ControlConnections.h contains the definition of three controller classes,
* ControlConnectBase, ControlConnectBI and ControlConnectBD.
*
* Together they control the connection/disconnection of signals with the LyX
* kernel. Controllers of individual dialogs interacting with the kernel through
* signals/slots will all be derived from ControlConnectBI or ControlConnectBD.
*
* A dialog is classed as "Buffer Dependent" if its contents change with the
* buffer (document). An example would be the Citation dialog. Such a dialog
* would be derived, therefore, from ControlConnectBD.
*
* Conversely, a dialog is "Buffer Independent" if its contents do not change
* when the buffer changes. An example would be the Copyright dialog. Such a
* dialog is therefore derived from ControlConnectBI.
*
*/
#ifndef CONTROLCONNECTIONS_H
#define CONTROLCONNECTIONS_H
#include "ControlButtons.h"
#include <boost/signals/connection.hpp>
class Buffer;
class BufferView;
class Dialogs;
class LyXView;
class LyXFunc;
/** Base class to control connection/disconnection of signals with the LyX
kernel. It is meant to be used solely as the parent class to
ControlConnectBI and ControlConnectBD.
*/
class ControlConnectBase : public ControlButtons {
public:
///
enum DocTypes {
///
LATEX,
///
LITERATE,
///
LINUXDOC,
///
DOCBOOK
};
///
ControlConnectBase(LyXView &, Dialogs &);
/// The View may need to know if the buffer is read-only.
bool bufferIsReadonly() const;
///
DocTypes docType() const;
protected:
/// True if the dialog depends on the buffer, else false.
virtual bool isBufferDependent() const = 0;
/// Connect signals
virtual void connect();
/// Disconnect signals
virtual void disconnect();
/** Redraw the dialog (on receipt of a Signal indicating, for example,
its colors have been re-mapped).
*/
void redraw();
/// a wrapper for BufferView::avaliable()
bool bufferIsAvailable() const;
/// a wrapper for LyXView::view()
BufferView * bufferview();
///
BufferView const * bufferview() const;
/// a wrapper for LyXView::buffer()
Buffer * buffer();
///
Buffer const & buffer() const;
/// a wrapper for LyXView::getLyXFunc()
LyXFunc & lyxfunc();
///
LyXFunc const & lyxfunc() const;
///
LyXView & lv_;
/// Contains the signals we have to connect to.
Dialogs & d_;
/// Hide connection.
boost::signals::connection h_;
/// Redraw connection.
boost::signals::connection r_;
};
/** Base class to control connection/disconnection of signals with the LyX
kernel for Buffer Independent dialogs.
Such dialogs do not require an update Connection although they may use
an update() function which is also supported by the Restore button.
*/
class ControlConnectBI : public ControlConnectBase {
public:
///
ControlConnectBI(LyXView &, Dialogs &);
protected:
///
virtual bool isBufferDependent() const { return false; }
/// Connect signals
virtual void connect();
};
/** Base class to control connection/disconnection of signals with the LyX
kernel for Buffer Dependent dialogs.
*/
class ControlConnectBD : public ControlConnectBase {
public:
///
ControlConnectBD(LyXView &, Dialogs &);
protected:
///
virtual bool isBufferDependent() const { return true; }
/// Connect signals
virtual void connect();
/// Disconnect signals
virtual void disconnect();
private:
/** Slot connected to update signal.
Bool indicates if a buffer switch took place.
Default behaviour is to ignore this and simply update().
*/
virtual void updateSlot(bool) { update(); }
/// Update connection.
boost::signals::connection u_;
};
#endif // CONTROLCONNECTIONS_H