lyx_mirror/src/frontends/controllers
Angus Leeming 524a23ba3a Compile fixes for DEC cxx, John's maths and keymap patches.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1783 a592a061-630c-0410-9148-cb99ea01b6c8
2001-03-16 12:08:14 +00:00
..
.cvsignore Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ButtonController.C Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ButtonController.h one small private fix in mathed, put noncopyable and tie into boost namespace 2001-03-15 16:04:46 +00:00
ButtonPolicies.C Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ButtonPolicies.h one small private fix in mathed, put noncopyable and tie into boost namespace 2001-03-15 16:04:46 +00:00
ChangeLog Compile fixes for DEC cxx, John's maths and keymap patches. 2001-03-16 12:08:14 +00:00
ControlBase.C Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ControlBase.h Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ControlBibitem.C Compile fixes for DEC cxx, John's maths and keymap patches. 2001-03-16 12:08:14 +00:00
ControlBibitem.h Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ControlCitation.C Compile fixes for DEC cxx, John's maths and keymap patches. 2001-03-16 12:08:14 +00:00
ControlCitation.h Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ControlCommand.C Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ControlCommand.h Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ControlConnections.C Compile fixes for DEC cxx, John's maths and keymap patches. 2001-03-16 12:08:14 +00:00
ControlConnections.h Compile fixes for DEC cxx, John's maths and keymap patches. 2001-03-16 12:08:14 +00:00
Makefile.am Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
README Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00
ViewBase.h Merging BRANCH_MVC back into HEAD. 2001-03-15 13:37:04 +00:00

This directory provides the controllers that act as an interface between the
LyX kernel and the GUI-specific implementations of each popup. It also
provides abstract base classes from which GUI-specific implemetations of the
ButtonController and each separate popup should be derived (see
ButtonControlBase.[Ch] and ViewBase.h respectively).

The Controller connects the GUI-specific popup to any appropriate signals and
dispatches any changes in the data to the kernel. It has no knowledge of the
actual instantiation of the GUI-dependent View and ButtonController, which
should therefore be created elsewhere. Once created, the Controller will take
care of their initialisation, management and, ultimately, destruction.

This leaves the GUI-specific popup (and its author!) to worry only about the
data that it has been created to input/modify.

This concept has been instatiated for the Citation dialog only at the moment.
See xforms-new/FormCitation.[Ch] for an xforms-specific View of the dialog.