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