]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ChangeLog
fix print bug & compilation problem
[lyx.git] / src / frontends / controllers / ChangeLog
1 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * ControlCredits.C (getCredits): remove std:: qualifier for
4         getline(). 
5
6 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7
8         * ControlCredits.C (getCredits): add std:: on vector
9
10 2001-03-22  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
11
12         * ControlCredits.C: remove using that is only used once, use
13         std::ios instead of std::iosbase, add som annoying comments.
14
15 2001-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
16
17         * lots of header files: improved explanatory notes.
18
19         * ControlBase.[Ch]: removed LyXView & lv_ and methods using it.
20         ControlBase is now a class that only controls the interaction of the
21         View with the ButtonController.
22
23         * ControlConnections.[Ch]: added LyXView & lv_ and associated methods
24         to ControlConnectBase. The class controls the connection/disconnection
25         of signals from the LyX kernel and makes available the kernel (through
26         lv_) to daughter controller classes.
27         Moved out class ControlConnectInset to a new file ControlDialogs.h.
28
29         * ControlDialogs.h: new file. Contains the definition of two template
30         controller classes, ControlDialog and ControlInset (was
31         ControlConnectInset). ControlInset is a parent class for controllers
32         of inset-popups. ControlDialogs is the rather uninspired name for
33         the base class of all non-inset popups. (Eg, Document and Paragraph.)
34         ControlDialogs is reaching a state of maturity as several popups now use
35         it and its functionality becomes clear. ControlInset is still in a state
36         of flux. It is likely that functionality will be moved out of
37         ControlCommands and into it.
38
39         * GUI.h: new file. Moved all the template GUIXXX classes out of the
40         individual Controller header files and into one place. These classes
41         serve only as convenient wrappers to simplify code in the respective
42         frontends' Dialogs::c-tor. Now all derived from a templatised parent.
43
44         * ControlCharacter.[Ch] (show, update, hide):
45         * ControlLog.[Ch] (show, update, hide):
46         * ControlVCLog.[Ch] (show, update, hide): moved back into
47         the ControlDialogs base class.
48         (setParams, clearParams): new methods containing controller-specific
49         code to set/reset the parameters manipulated by the view.
50
51         * ControlCommand.[Ch] (clearParams): a new virtual method, by default
52         empty.
53         (hide): calls clearParams.
54
55         * ControlCitation.[Ch] (hide): renamed as clearParams, a method called
56         by ControlCommand::hide().
57
58         * ControlCopyright.[Ch]:
59         * ControlCredits.[Ch]: new files; controllers for the copyright and
60         credits popups, respectively.
61
62 2001-03-21  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
63
64         * ControlCharacter.C: fix typo
65
66 2001-03-21  Angus Leeming  <a.leeming@ic.ac.uk>
67
68         * ControlCharacter.[Ch]: new files; controller for the character popup.
69
70         * ControlCitation.[Ch] (getStringFromVector, getVectorFromString):
71         moved to new files helper_funcs.[Ch].
72
73         * helper_funcs.[Ch]: new files. Some useful helper functions and
74         functors.
75
76         * Makefile.am: added new files.
77
78 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
79
80         * ControlCitation.C (getBibkeyInfo): parse non-BibTeX entries correctly.
81
82 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
83
84         * ControlLog.[Ch]:
85         * ControlVCLog.[Ch]: new files; controllers for LaTeX and Version
86         Control log files, respectively.
87
88         * Makefile.am: added new files.
89
90 2001-03-19  Angus Leeming  <a.leeming@ic.ac.uk>
91
92         * ControlBibtex.[Ch]: new files; controller for an InsetBibtex popup.
93
94         * Makefile.am: added ControlBibtex.[Ch].
95
96 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
97
98         * ControlBibitem.C:
99         * ControlCitation.C: added "using SigC::slot" declaration.
100
101         * ControlCitation.C (getStringFromVector): re-apply Dekel's recent fix
102         to FormCitation.C prior to the merger: "Do not put space between
103         multiple keys".
104
105 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
106
107         * several files: remove CXX_WORKING_NAMESPACES
108
109         * ButtonController.h: noncopyable is in namespace boost
110         * ButtonPolicies.h: ditto
111
112 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
113
114         * Merging changes from BRANCH_MVC back into HEAD.
115
116 2001-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
117
118         * Makefile.am: add ControlBibitem.[Ch].
119
120         * ControlBibitem.[Ch]: new files that together define the Controller
121         for a Bibitem popup.
122
123         * ControlCommand.h (c-tor): give  kb_action a default value of
124         LFUN_NOACTION.
125         
126         * ControlCommand.C (apply): do nothing if kb_action is LFUN_NOACTION.
127         
128         * ControlCitation.[Ch]: moved search functions out of class.
129         (bibkeysInfo): new method. Returns const reference to private data.
130         (searchKeys): added case-sensitive switch. Used only by simpleSearch
131         for now.
132
133 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
134
135         * ControlCitation.[Ch]: added Search functions to the class,
136         (shamelessly lifted from Marco's gnome code). I think that these would
137         be better as helper functions outside the class, but this is a first
138         stab at it.
139
140 2001-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
141
142         * ControlCitation.[Ch]: (getBibkeyList): removed from class
143         ControlCitation.
144         (getBibkeys, getBibkeyInfo): added to class ControlCitation.
145         (getStringFromVector, getVectorFromString, parseBibTeX): new helper
146         funcs. parseBibTeX() is lifted staraight out of Marco's gnome
147         implementation of FormCitation.
148
149 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
150
151         * ButtonPolicies.h: add SMI_NOOP to enum.
152
153         * ButtonPolicies.C (nextState): add if-statement for SMI_NOOP.
154
155         * ButtonController.C (input): add "optimising" if-statement. Actually,
156         things don't work correctly without it...
157
158 2001-03-02  John Levon  <moz@compsoc.man.ac.uk>
159
160         * ViewBase.h: remove #pragma directive
161
162         * ControlConnection.[Ch] (ControlConnectBI c-tor): add explicit c-tor
163         to make g++ happy.
164
165 2001-03-02  Angus Leeming  <a.leeming@ic.ac.uk>
166
167         * ButtonPolicies.[Ch]: moved from ../ButtonPolicies.[Ch]
168
169         * Makefile.am: added ButtonPolicies.[Ch]
170
171         * ButtonController.[Ch]: ButtonController is split into
172         ButtonControllerBase and a template ButtonController class. The base
173         class no longer stores a pointer to a ButtonPolicy, but instead
174         accesses the actual instantiation of the policy through a pure virtual
175         method bp(). This method and the ButtonPolicy itself are instantiated
176         in the templatised ButtonController class. This class is derived from
177         the GUI-specific GUIBC class, meaning that the frontends know
178         nothing about the actual policy decided upon by the controllers.
179
180         * ControlBase.[Ch]: No longer store the View or the ButtonController.
181         Instead the actual instantiations are accessed through pure virtual
182         methods view() and bc(). The daughter classes are responsible for the
183         actual View and ButtonController.
184
185         * ControlCitation.h: the templatised class GUICitation instantiates
186         the methods view() and bc(). It also stores the instances of the
187         View and ButtonController.
188         
189 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
190
191         * ButtonControllerBase.[Ch]: renamed as ButtonController.[Ch]. Class
192         also changed to ButtonController.
193
194         * ControlBase.[Ch]:
195         * ControlConnections.[Ch]:
196         * ControlCommand.[Ch]:
197         * ControlCitation.[Ch]:
198         * ViewBase.h: Changes associated with this.
199
200 2001-01-15  Angus Leeming  <a.leeming@ic.ac.uk>
201
202         * ButtonControllerBase.[Ch]: new files. Split Allan's original
203         xforms/ButtonController class into a GUI-I class (here) and an
204         xforms-specific derived class, to be found in xforms/xformsBC.[Ch].
205
206         * ControlBase.[Ch]: new files. ControlBase is an abstract base class
207         from which all Dialog Controllers should be derived. the Controllers
208         are GUI-independent, but are designed to control the behaviour of
209         GUI-specific implementaions of each dialog.
210
211         * ControlConnections.[Ch]: new files. Classes controlling the
212         connections of buffer-independent, buffer-dependent and Inset dialogs
213         with the LyX kernel.
214
215         * ControlCommand.[Ch]: new files. A controller for all dialogs for the
216         InsetCommand subset of insets.
217
218         * ControlCitation.[Ch]: new files. The test specialisation! A
219         controller for the Citation dialog.
220
221         * ViewBase.h: new file. ViewBase is an abstract base class from which
222         GUI-specific dialogs should be derived. The functionality that the GUIs
223         must now implement is much reduced.