]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ChangeLog
Merging BRANCH_MVC back into HEAD.
[lyx.git] / src / frontends / controllers / ChangeLog
1 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
2
3         * Merging changes from BRANCH_MVC back into HEAD.
4
5 2001-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
6
7         * Makefile.am: add ControlBibitem.[Ch].
8
9         * ControlBibitem.[Ch]: new files that together define the Controller
10         for a Bibitem popup.
11
12         * ControlCommand.h (c-tor): give  kb_action a default value of
13         LFUN_NOACTION.
14         
15         * ControlCommand.C (apply): do nothing if kb_action is LFUN_NOACTION.
16         
17         * ControlCitation.[Ch]: moved search functions out of class.
18         (bibkeysInfo): new method. Returns const reference to private data.
19         (searchKeys): added case-sensitive switch. Used only by simpleSearch
20         for now.
21
22 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
23
24         * ControlCitation.[Ch]: added Search functions to the class,
25         (shamelessly lifted from Marco's gnome code). I think that these would
26         be better as helper functions outside the class, but this is a first
27         stab at it.
28
29 2001-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
30
31         * ControlCitation.[Ch]: (getBibkeyList): removed from class
32         ControlCitation.
33         (getBibkeys, getBibkeyInfo): added to class ControlCitation.
34         (getStringFromVector, getVectorFromString, parseBibTeX): new helper
35         funcs. parseBibTeX() is lifted staraight out of Marco's gnome
36         implementation of FormCitation.
37
38 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
39
40         * ButtonPolicies.h: add SMI_NOOP to enum.
41
42         * ButtonPolicies.C (nextState): add if-statement for SMI_NOOP.
43
44         * ButtonController.C (input): add "optimising" if-statement. Actually,
45         things don't work correctly without it...
46
47 2001-03-02  John Levon  <moz@compsoc.man.ac.uk>
48
49         * ViewBase.h: remove #pragma directive
50
51         * ControlConnection.[Ch] (ControlConnectBI c-tor): add explicit c-tor
52         to make g++ happy.
53
54 2001-03-02  Angus Leeming  <a.leeming@ic.ac.uk>
55
56         * ButtonPolicies.[Ch]: moved from ../ButtonPolicies.[Ch]
57
58         * Makefile.am: added ButtonPolicies.[Ch]
59
60         * ButtonController.[Ch]: ButtonController is split into
61         ButtonControllerBase and a template ButtonController class. The base
62         class no longer stores a pointer to a ButtonPolicy, but instead
63         accesses the actual instantiation of the policy through a pure virtual
64         method bp(). This method and the ButtonPolicy itself are instantiated
65         in the templatised ButtonController class. This class is derived from
66         the GUI-specific GUIBC class, meaning that the frontends know
67         nothing about the actual policy decided upon by the controllers.
68
69         * ControlBase.[Ch]: No longer store the View or the ButtonController.
70         Instead the actual instantiations are accessed through pure virtual
71         methods view() and bc(). The daughter classes are responsible for the
72         actual View and ButtonController.
73
74         * ControlCitation.h: the templatised class GUICitation instantiates
75         the methods view() and bc(). It also stores the instances of the
76         View and ButtonController.
77         
78 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
79
80         * ButtonControllerBase.[Ch]: renamed as ButtonController.[Ch]. Class
81         also changed to ButtonController.
82
83         * ControlBase.[Ch]:
84         * ControlConnections.[Ch]:
85         * ControlCommand.[Ch]:
86         * ControlCitation.[Ch]:
87         * ViewBase.h: Changes associated with this.
88
89 2001-01-15  Angus Leeming  <a.leeming@ic.ac.uk>
90
91         * ButtonControllerBase.[Ch]: new files. Split Allan's original
92         xforms/ButtonController class into a GUI-I class (here) and an
93         xforms-specific derived class, to be found in xforms/xformsBC.[Ch].
94
95         * ControlBase.[Ch]: new files. ControlBase is an abstract base class
96         from which all Dialog Controllers should be derived. the Controllers
97         are GUI-independent, but are designed to control the behaviour of
98         GUI-specific implementaions of each dialog.
99
100         * ControlConnections.[Ch]: new files. Classes controlling the
101         connections of buffer-independent, buffer-dependent and Inset dialogs
102         with the LyX kernel.
103
104         * ControlCommand.[Ch]: new files. A controller for all dialogs for the
105         InsetCommand subset of insets.
106
107         * ControlCitation.[Ch]: new files. The test specialisation! A
108         controller for the Citation dialog.
109
110         * ViewBase.h: new file. ViewBase is an abstract base class from which
111         GUI-specific dialogs should be derived. The functionality that the GUIs
112         must now implement is much reduced.