]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ChangeLog
some support for pch
[lyx.git] / src / frontends / controllers / ChangeLog
1 2004-08-15  Lars Gullik Bjonnes  <larsbj@gullik.net>
2
3         * pch.h: new file
4
5         * Makefile.am: support pch
6
7 2004-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
8
9         * helper_funcs.C (browseLibFile): new function. Tries to do the
10         right thing to look for a file in lyxdir
11
12         * ControlPrefs.C (browsebind, browseUI, browsekbmap): use
13         browseLibFile
14
15 2004-08-07  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
16
17         * ControlBibtex.C (browseBst): new method, specialized to lookup
18         bibtex style files
19         (browseBib): new method, specialized to lookup bibtex database files
20         (browse): removed
21
22 2004-07-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
23
24         * ControlErrorList.C (goTo): shuffle code to avoid compiler warning.
25
26 2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
27
28         * biblio.C, ControlPrefs.C, ControlParagraph.C:
29         * ControlLog.C, ControlDocument.C, ControlAboutlyx.C: replace
30         "support/std_sstream.h" with <sstream>
31
32 2004-05-19  Angus Leeming  <leeming@lyx.org>
33
34         * *.[Ch]: wrap all code up inside namespace lyx::frontend.
35         Move namespace biblio to lyx::biblio.
36
37 2004-05-14  Angus Leeming  <leeming@lyx.org>
38
39         * biblio.[Ch] (asValidLatexCommand): new function which examines
40         the input string to return a latex citation command that is
41         valid for the current citation engine.
42
43 2004-05-14  Angus Leeming  <leeming@lyx.org>
44
45         * ControlCitation.[Ch]: small changes to use the CiteEngine_enum
46         wrapper class.
47
48         * biblio.[Ch]: move the CiteEngine enum into bufferparams.h to
49         minimize dependencies on this file.
50         (getCitationStyle, getCiteCommand): removed. Functionality moved
51         into the CitationStyle struct.
52
53 2004-05-12  Angus Leeming  <leeming@lyx.org>
54
55         * biblio.C (getEngine): reduced to the trivial.
56
57 2004-05-10  Angus Leeming  <leeming@lyx.org>
58
59         * biblio.[Ch]: create a new biblio::CiteEngine enum. Use it instead of
60         bools usingNatbib, usingJurabib.
61
62         * ControlCitation.[Ch]: simplified code to use the biblio::CiteEngine
63         enum rather than multiple bools, usingNatbib and using Jurabib.
64
65 2004-04-12  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
66
67         * ControlGraphics.[Ch] (editGraphics): new method
68
69 2004-04-07  Martin Vermeer  <martin.vermeer@hut.fi>
70
71         * ControlDocument.C: 'assign' for opening/closing branch insets
72         according to selection
73
74 2004-04-05  Angus Leeming  <leeming@lyx.org>
75
76         * ButtonPolicies.C (printState, printInput): human-readable output
77         of ButtonPolicy::State, ButtonPolicy::SMInput.
78         (PreferencesPolicy::input): change the behaviour of the Preferences
79         state machine on receipt of SMI_CANCEL/SMI_HIDE if the existing
80         state is APPLIED, then let this state persist. Next time that the
81         dialog is opened, the user will be able to press 'Save'.
82
83 2004-04-05  Angus Leeming  <leeming@lyx.org>
84
85         * ControlPrefs.C (dispatchParams): ignore system_lyxrc when writing
86         the contents of rc_ to the stringstream.
87
88 2004-04-05  Angus Leeming  <leeming@lyx.org>
89
90         * ControlErrorList.C: wrap #warning calls inside #ifdef
91         WITH_WARNINGS blocks.
92
93 2004-04-01  Angus Leeming  <leeming@lyx.org>
94
95         * README: removed. It refered to the ancient and impossible to
96         understand scheme ;-)
97
98 2004-03-31  Angus Leeming  <leeming@lyx.org>
99
100         * ControlButtons.[Ch]:
101         * ControlConnections.[Ch]:
102         * ControlDialog.{h,tmpl}:
103         * ControlDialog_impl.[Ch]:
104         * GUI.h:
105         * ViewBase.[Ch]: all removed.
106
107         * Makefile.am: adjusted to suit.
108
109 2004-03-31  Angus Leeming  <leeming@lyx.org>
110
111         * ControlPreamble.[Ch]: converted to the dialog-based scheme.
112
113 2004-03-31  Angus Leeming  <leeming@lyx.org>
114
115         * ControlSpellchecker.C: converted to the dialog-based scheme.
116         Cleaned-up the program structure so that it behaves in similar manner
117         to all the other dialogs. There is still far too much of the core
118         in here though...
119
120         * Dialog.C (update): more generic error message.
121
122 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
123
124         * ControlSpellchecker.C: s/DocumentIterator/DocIterator/g
125
126 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
127
128         * ControlSpellchecker.C (isLetter, nextWord): check for inTextEd,
129         use forwardPos.
130
131 2004-03-31  Angus Leeming  <leeming@lyx.org>
132
133         * ControlPrefs.[Ch]: converted to the dialog-based scheme.
134
135         * Dialog.C (apply): bug fix. Enable the dispatch of dialogs
136         which aren't dependent on a buffer when no buffer is open.
137
138         Kernel.[Ch] (redrawGUI): new function.
139
140 2004-03-31  Angus Leeming  <leeming@lyx.org>
141
142         * ControlPrefs.C: a bit of an overhaul, moving the local Converters
143         and Formats variables out of the various frontends to here,
144         and ensuring that nothing is actually dispatched to the core except
145         from apply().
146         Also use the new LFUN_LYXRC_APPLY lfun.
147
148 2004-03-30  Angus Leeming  <leeming@lyx.org>
149
150         * ControlDocument.[Ch]: converted to the dialog-based scheme.
151
152 2004-03-30  Angus Leeming  <leeming@lyx.org>
153
154         * ControlDocument.[Ch]: move all of the 'apply' code into the core
155         and access it by dispatching the appropriate lfuns.
156
157 2004-03-30  Angus Leeming  <leeming@lyx.org>
158
159         * ControlDocument.C (apply): replace the loop over paragraphs
160         invoking insetsOpenCloseBranch with
161         LFUN_ALL_INSETS_TOGGLE, "toggle branch".
162
163 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
164
165         * ControlBibtex.[Ch]: add member usingBibtopic().
166
167 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
168
169         * ControlDocument.C:
170         * ControlErrorList.C: adjust to ParIterator change
171
172 2004-03-28  Angus Leeming  <leeming@lyx.org>
173
174         * ControlPrint.[Ch]: converted to the dialog-based scheme.
175
176 2004-03-27  Angus Leeming  <leeming@lyx.org>
177
178         * ControlSendto.[Ch]: converted to the dialog-based scheme.
179
180 2004-03-24  Angus Leeming  <leeming@lyx.org>
181
182         64-bit compile fixes.
183
184         * ControlErrorList.C (goTo): use lyx::pos_type as type of
185         temporary vars.
186
187         * ControlSpellchecker.C (nextWord): pass progress as a
188         PosIterator::difference_type, not an int.
189
190 2004-03-17  Angus Leeming  <leeming@lyx.org>
191
192         * ControlForks.[Ch]: removed.
193
194         * Makefile.am: remove mention of ControlForks.[Ch].
195
196 2004-03-07  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
197
198         * biblio.[Ch]:
199         * ControlCitation.[Ch]: add jurabib support.
200
201 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
202
203         * ControlPrint.C, ControlSendto.C: use always a temp dir
204         * ControlSendto.C: check return value of buffer()->writeFile()
205
206 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
207
208         * biblio.C (parseBibTeX): "=" -> '='
209
210 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
211
212         * biblio.C (RegexMatch): inherit from std::unary_function, make
213         operator() const and variable regex_ mutable.
214
215         * ControlSpellchecker.C (check): use correct types for the result
216         from distance.
217
218 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
219
220         * ControlSpellchecker.C: add using statements for std::advance and
221         std::distance
222
223         * ControlExternal.C: add using statement for std::advance
224
225 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
226
227         * ControlSpellchecker.C (check): use std::distance and
228         std::advance
229
230 2004-01-25  Angus Leeming  <leeming@lyx.org>
231
232         * ControlSearch.[Ch]: derive from Dialog::Controller rather than
233         the deprecated ControlDialogBD.
234
235 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
236
237         * Dialog.C (hide): disconnect dialog/inset on hide (partial fix
238         to bug 1251)
239
240 2004-01-08  Angus Leeming  <leeming@lyx.org>
241
242         * ControlBibtex.[Ch] (browse):
243         * ControlExternal.[Ch] (browse):
244         * ControlGraphics.[Ch] (browse):
245         * ControlInclude.[Ch] (browse):
246         * ControlPrefs.[Ch] (browsebind, browseUI, browsekbmap,
247         browsedict, browse, browsedir):
248         * ControlPrint.[Ch] (browse):
249         FileFilterList change to the browseFile, browseRelFile functions.
250
251         * helper_funcs.[Ch] (browseFile, browseRelFile):
252         FileFilterList change to the FileDialog open and save functions.
253
254 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
255
256         * ControlSendto.C (allFormats): use the unique-erase idom and
257         simplify some code a bit.
258
259         * ControlMath.C: make CompareKey adaptable
260
261 2004-01-07  Angus Leeming  <leeming@lyx.org>
262
263         * ControlSearch.C:
264         * ControlThesaurus.C (replace):
265         rewrite to use LFUN_WORD_(FIND|REPLACE).
266
267 2003-12-14  Angus Leeming  <leeming@lyx.org>
268
269         * ControlBranch.[Ch] (branchlist): new member function.
270
271         * ControlDocument.C (setBranchColor): removed.
272         (apply): update LColor to accommodate the new BranchList colors.
273
274 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
275
276         * ControlMinipage.[Ch]: remove.
277         * Makefile.am: remove minipage files.
278
279 2003-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
280
281         * ControlMath.C (dispatchSubscript, dispatchSuperscript): enable
282         the math panel sub/superscript buttons once again.
283
284 2003-12-11  Angus Leeming  <leeming@lyx.org>
285
286         * ControlCommand.C (initialiseParams): changes due to the changed
287         interface to InsetCommandMailer::string2params.
288
289 2003-12-10  Angus Leeming  <leeming@lyx.org>
290
291         * ControlNote.[Ch] (note_gui_tokens): removed; no longer needed.
292
293 2003-12-10  Angus Leeming  <leeming@lyx.org>
294
295         * ControlBranch.C (dispatchParams): change to invocation of
296         InsetBranchMailer::params2string.
297
298         * ControlNote.C (dispatchParams): change to invocation of
299         InsetNoteMailer::params2string.
300
301 2003-12-05  Angus Leeming  <leeming@lyx.org>
302
303         * ControlVCLog.[Ch]: removed.
304         * Makefile.am: remove ControlVCLog.[Ch]
305
306 2003-12-05  Angus Leeming  <leeming@lyx.org>
307
308         * ControlLog.[Ch]: re-worked so that it is passed the logtype and
309         filename rather than extracting them from the kernel.
310
311 2003-12-04  Angus Leeming  <leeming@lyx.org>
312
313         * ControlExternal.[Ch] (bbChanged): new accessor functions to a
314         boolean flag.
315         (readBB): attempt to read the BoundingBox from the graphics file.
316         If that fails, try the Graphics Cache.
317         (all_origins, origin_gui_str): helpers for the frontends.
318
319 2003-12-01  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
320
321         * ControlVSpace.C: enable the buttons for new insets.
322
323 2003-11-28  André Pönitz  <poenitz@gmx.net>
324
325         * ControlVSpace.[Ch]: new files
326         * Makefile.am: adjust
327
328 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
329
330         * ControlDocument.C: Change call to insetsOpenCloseBranch
331
332 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
333
334         * ControlSpellchecker.C (isLetter): skip ert
335
336 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
337
338         * ControlErrorList.C (goTo): allow going to inner paragraphs
339
340 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
341
342         * ControlSearch.[Ch]:
343         * ControlThesaurus.C: adjust to spellcheck code changes
344
345 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
346
347         * ControlSpellchecker.C (nextWord): do not send ligature breaks
348         and other nasty insets to the spellchecker
349
350 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
351
352         * ControlSpellchecker.[Ch] (nextWord, check): rewrite of the text
353         handling parts
354
355 2003-10-27  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
356
357         * ControlDocument.[Ch]: add method setBranchColor().
358
359 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
360
361         * ControlCommandBuffer.C (dispatch): adjust for dispatch change
362
363 2003-10-08  Angus Leeming  <leeming@lyx.org>
364
365         Fix doxygen warnings.
366
367         * frnt_lang.h: move comment so that doxygen is not confused.
368
369 2003-10-07  Angus Leeming  <leeming@lyx.org>
370
371         * ControlExternal.[Ch]: InsetExternal::Params -> InsetExternalParams.
372         (getTemplatePtr): removed. Use function in ExternalSupport.
373
374 2003-10-07  Martin Vermeer  <martin.vermeer@hut.fi>
375
376         * ControlBox.C:
377         * ControlBox.h:
378         * Makefile.am: The Box patch. Fancybox support, minipage, parbox
379
380 2003-10-07  Martin Vermeer  <martin.vermeer@hut.fi>
381
382         * BCView.h:
383         * ControlCommandBuffer.h:
384         * biblio.h:
385         * frnt_lang.h:
386         * tex_helpers.h: add <string> and other small fixes to make Lars'
387         std::string patch compile with STLport.
388
389 2003-10-01  Angus Leeming  <leeming@lyx.org>
390
391         * ControlExternal.[Ch]: changes due to the introduction of
392         namespace lyx::external.
393
394 2003-09-25  Angus Leeming  <leeming@lyx.org>
395
396         * ControlExternal.C (getTemplatePtr): simplify, due to change in
397         ExternalTemplateManager interface.
398
399 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
400
401         * ControlDocument.C (setParams): fix new bug
402
403 2003-09-19  Angus Leeming  <leeming@lyx.org>
404
405         * ControlInclude.[Ch]: Store and access the params as an
406         InsetCommandParams, rather than access them as a InsetInclude::Params
407         and store 'em as a boost::scoped_ptr<InsetInclude>.
408         Other clean-ups due to the changes in InsetInclude.
409
410 2003-09-18  Angus Leeming  <leeming@lyx.org>
411
412         * ControlCommand.C (clearParams): simplify.
413
414 2003-09-18  Angus Leeming  <leeming@lyx.org>
415
416         * ControlCharacter.C:
417         * ControlCharacter.h:
418         * ControlPrefs.C:
419         * ControlPrefs.h:
420         * character.h: rename EnumLColor as LColor_color.
421
422 2003-09-16  Angus Leeming  <leeming@lyx.org>
423
424         * ControlCharacter.C: add #include "LColor.h".
425
426 2003-09-16  Angus Leeming  <leeming@lyx.org>
427
428         * character.C: add #include "LColor.h".
429
430 2003-09-15  Angus Leeming  <leeming@lyx.org>
431
432         * ControlCharacter.C (setColor, getColor):
433         pass EnumLColor args, rather than LColor::color ones.
434
435         * ControlPrefs.C: add #include "LColor.h".
436         * ControlPrefs.h:remove #include "LColor.h".
437
438         * ControlPrefs.[Ch] (setColor): pass EnumLColor arg, not than LColor::color one.
439
440         * character.h:remove #include "LColor.h".
441         typedef ColorPair as a std::pair<string, EnumLColor>.
442
443 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
444
445         * ControlAboutlyx.C
446         * ControlParagraph.C
447         * biblio.C
448         * tex_helpers.C: remove usage of STRCONV
449
450 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
451
452         * several files: change Assert to BOOST_ASSERT
453
454 2003-09-08  Angus Leeming  <leeming@lyx.org>
455
456         * ControlCommandBuffer.C:
457         * ControlDocument.C:
458         * ControlPrefs.C:
459         * helper_funcs.C:
460         * tex_helpers.C: remove redundant using directives.
461
462 2003-09-07  Angus Leeming  <leeming@lyx.org>
463
464         * ButtonController.h:
465         * helper_funcs.h: remove #include "support/std_string.h".
466
467         * ControlBranch.h:
468         * ControlNote.h: remove #include "debug.h".
469
470         * ControlDocument.h: remove #include <vector>, "support/std_string.h".
471
472         * ControlErrorList.h:
473         * ControlThesaurus.h: remove #include <vector>.
474
475         * ControlPrefs.h: remove #include "funcrequest.h", <utility>.
476
477         * GUI.h: remove #include "BCView.h".
478
479         * tex_helpers.h: remove #include <utility>.
480
481 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
482
483         * biblio.C:
484         * frnt_lang.C: re-add missing system headers, needed for 2.95.2.
485
486 2003-09-05  Angus Leeming  <leeming@lyx.org>
487
488         * GUI.h: ensure that the header file can be compiled stand-alone.
489         * *.C: strip out redundant #includes. (49 in total.)
490
491 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
492
493         * most files: change to use const buffer refs.
494
495 2003-08-16  Martin Vermeer  <martin.vermeer@hut.fi>
496
497         * ControlBranch.[Ch]:
498         * ControlDocument.C:
499         * Makefile.am: implements the 'branch
500         inset' idea. This allows the output of various versions of a
501         document from a single source version, selectively outputing or
502         suppressing output of parts of the text.
503         This implementation contains a 'branch list editor' in a separate
504         tab of the document settings dialog. Branches are user definable
505         and have a "display colour" to distinguish them on-screen.
506
507         ColorHandler was somewhat cleaned up.
508         (1) make possible a dynamically growing LColor list by allowing
509         the graphic context cache to grow along (vector);
510         (2) eliminate an IMHO unnecessary step in colour allocation.
511
512 2003-08-15  André Pönitz  <poenitz@gmx.net>
513
514         * ControlErrorList.C:
515         * ControlSpellchecker.C: remove toggleSelection
516
517 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
518
519         * ControlGraphics.C: rename "XXX baseline" to "Baseline XXX"
520         for consistency
521         * ControlTabular.h:
522         * ControlTabular.C: rename VALIGN_CENTER to VALIGN_MIDDLE;
523         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
524         rename VCENTER to MIDDLE
525
526 2003-08-04  André Pönitz  <poenitz@gmx.net>
527
528         * ControlErrorList.C:
529         * ControlSpellchecker.C: simpler BufferView::update() calls
530
531 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
532
533         * ControlNote.[Ch]: add i18n support.
534
535 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
536
537         * ControlToc.C (goTo): adjust for lyx::toc
538         (getTypes): ditto
539         (getContents): ditto
540
541         * ControlThesaurus.C (replace): adjust for lyx::find
542
543         * ControlSearch.C (find): adjust for lyx::find
544         (replace): ditto
545
546         * ControlChanges.C (find): adjust for lyx::find
547         (accept): ditto
548         (reject): ditto
549
550 2003-07-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
551
552         * ControlTabular.C (useMetricUnits): adapt PAPER_* enums
553
554 2003-07-23  Angus Leeming  <leeming@lyx.org>
555
556         * ControlExternal.C: pass a Buffer const & rather than a Buffer const *
557         to the mailer's string2params, params2string functions.
558
559         * ControlGraphics.C pass a Buffer const & rather than a string const &
560         buffer_path to the mailer's string2params, params2string functions.
561
562 2003-07-23  Angus Leeming  <leeming@lyx.org>
563
564         * Kernel.[Ch] (bufferFilepath): new wrapper for Buffer::filePath.
565
566         * ControlBibtex.C:
567         * ControlExternal.C:
568         * ControlGraphics.C: use it.
569
570 2003-07-21  Angus Leeming  <leeming@lyx.org>
571
572         * ControlGraphics.C (initialiseParams, dispatchParams): no need
573         to modify the filename for reasons of 'good UI' anymore.
574
575 2003-07-21  Angus Leeming  <leeming@lyx.org>
576
577         * ControlGraphics.C (initialiseParams, dispatchParams): pass a
578         buffer_path parameter to InsetGraphicsMailer's string2params,
579         params2string.
580
581 2003-07-21  Angus Leeming  <leeming@lyx.org>
582
583         * ControlGraphics.C (readBB): use namespace lyx::graphics rather
584         than grfx shortcut.
585
586 2003-07-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
587
588         * ControlGraphics.C (dispatchParams): avoid some variable/function
589         shadowing.
590
591         * ControlDialog.tmpl (show): follow C++ rules more closely
592         (update): ditto
593         (hide): ditto
594
595 2003-07-17  Angus Leeming  <leeming@lyx.org>
596
597         * ControlChanges.h:
598         * ControlErrorList.h:
599         * ControlLog.h:
600         * ControlMath.h:
601         * ControlShowFile.h:
602         * ControlTexinfo.h:
603         * ControlVCLog.h:
604         * Dialog.h: fix some doxygen warnings.
605
606         * Dialog.C: shuffle a couple of functions around.
607
608 2003-07-16  Angus Leeming  <leeming@lyx.org>
609
610         * ControlMath.C (find_xpm): rewrite to make Lars happy by using find_if.
611
612 2003-07-16  Angus Leeming  <leeming@lyx.org>
613
614         Dialog.[Ch]: move a few methods out of line.
615
616         Dialog.h:
617         Kernel.h: improve doxygen documentation.
618
619 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
620
621         * introduce namespace lyx::support
622
623 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
624
625         * Kernel.h: fix some \class issues
626
627         * Kernel.C: fix \file
628
629         * Dialog.h: fix some \class issues
630
631         * ControlErrorList.h: correct const type order, remove some
632         ControlErrorList:: from declarations.
633
634         * BCView.h: fix usage of \class to \c
635         * ControlAboutlyx.h: ditto
636         * ButtonController.h: ditto + remove misplaced end doxy group tag
637
638 2003-06-24  Alfredo Braunstein  <abraunst@libero.it>
639
640         * ControlDocument.C (classApply): removed the call to resetErrorList,
641         replaced setErrorList by parseErrors
642
643 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
644
645         * ControlError.[Ch]: removed
646         * Makefile.am: adjust
647
648 2003-06-20  Angus Leeming  <leeming@lyx.org>
649
650         * tex_helpers.[Ch] (getTexFileList): changed to
651         void getTexFileList(string const & file, vector<string> & contents);
652
653         * ControlBibtex.[Ch] (getBibFiles, getBibStyles): now passed a
654         vector<string> to fill rather than returning a string.
655
656         * ControlTexinfo.[Ch] (rescanStyles, runTexhash): removed. No need
657         for an extra layer of indirection.
658         (getContents): moved out of class to getTexFileList.
659
660 2003-06-19  Angus Leeming  <leeming@lyx.org>
661
662         * ControlTexinfo.[Ch]: rewritten to use the Dialog-based scheme.
663
664 2003-06-17  Angus Leeming  <leeming@lyx.org>
665
666         * ControlMath.[Ch]:
667         * ControlMath2.[Ch]: rename ControlMath2 as ControlMath.
668         Move into ControlMath.[Ch]. Remove ControlMath2.[Ch].
669
670         * Makefile.am: remove ControlMath2.[Ch].
671
672 2003-06-17  Angus Leeming  <leeming@lyx.org>
673
674         * ControlMath.[Ch] (showDialog):
675         * ControlMath2.[Ch] (showDialog, dispatchFunc): new member functions.
676
677         * ControlMath2.C: wrap all other calls to the kernel diapatcher into
678         dispatchFunc.
679
680 2003-06-12  Angus Leeming  <leeming@lyx.org>
681
682         * ControlMath2.[Ch]: new files. A work in progress towards a clean
683         implementation of the math panel.
684
685         * Makefile.am: add files.
686
687 2003-06-11  Angus Leeming  <leeming@lyx.org>
688
689         * ControlExternal.[Ch]: changes due to InsetExternal::Params no longer
690         storing the ExternalTemplate but its name.
691
692 2003-06-10  Angus Leeming  <leeming@lyx.org>
693
694         * ControlExternal.C (editExternal): invokes new LFUN_EXTERNAL_EDIT
695         rather than generate a new inset itself.
696
697 2003-06-06  John Levon  <levon@movementarian.org>
698
699         * ControlDocument.C: make sure a language change
700         always gets propogated
701
702 2003-06-03  Angus Leeming  <leeming@lyx.org>
703
704         * ControlExternal.[Ch]: remove viewExternal and updateExternal.
705         Change the internal store from an InsetExternal to its Param struct.
706
707 2003-06-03  John Levon  <levon@movementarian.org>
708
709         * ControlGraphics.C: make file path relative for the GUI,
710         absolute for the backend
711
712 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
713
714         * ControlDocument.C (saveAsDefault): adjust
715
716 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
717
718         * ViewBase.h:
719         * Dialog.h (setTitle): added
720
721 2003-05-20  Alfredo Braunstein  <abraunst@libero.it>
722
723         * ControlErrorList.[Ch]: small bugs fixed, use ErrorList
724
725 2003-05-13  André Pönitz  <poenitz@gmx.net>
726
727         * ControlForks.[Ch]: use vector<pid_t> instead of strings
728
729 2003-05-14  Rob Lahaye <lahaye@users.sourceforge.net>
730
731         * ControlErrorList.C (clearParams): replace string::clear by
732         string::erase
733
734 2003-05-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
735
736         * ControlErrorList.C (goTo): use lyxerr not cout.
737
738 2003-05-13  Alfredo Braunstein <abraunst@libero.it>
739
740         * ControlErrorList.[Ch]: added
741         * Makefile.am: the above adittion
742
743 2003-05-13 André Pönitz <poenitz@gmx.net>
744
745         * ControlDocument.C:
746         * ControlPrint.C:
747         * ControlSpellchecker.C:
748         * biblio.C: boost::format -> bformat  all over the place
749
750         * ControlForks.C:
751         * ControlGraphics.C:
752         * ControlPrint.C:
753         * ControlSearch.C:
754         * ControlSpellchecker.C:
755         * ControlTabularCreate.C: use tostr from new header
756
757
758 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
759
760         * Makefile.am: better lib building
761
762 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
763
764         * ControlDocument.C (saveAsDefault): parlist cleanup
765
766 2003-05-06  John Levon  <levon@movementarian.org>
767
768         * ControlDocument.C: fix buggy boost format
769
770 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
771
772         * ControlDocument.C (classApply): adjust call to
773         SwitchLayoutsBetweenClasses.
774
775 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
776
777         * ControlDocument.C (setLanguage): call updateDocLang when not
778         calling changeLanguage.
779
780 2003-04-10  John Levon  <levon@movementarian.org>
781
782         * ControlTabular.h:
783         * ControlTabular.C: add longTabular() etc.
784
785 2003-04-10  John Levon  <levon@movementarian.org>
786
787         * ControlMath.C (find_xpm): handle math_delim arguments
788
789 2003-04-02  Angus Leeming  <leeming@lyx.org>
790
791         * ControlCommandBuffer.[Ch] (c-tor): passed a LyXView & rather than
792         a LyXFunc &. Ensuing changes elsewhere.
793         (getCurrentState): new method, returning bufferview_func's
794         currentState (needs the currently active BufferView).
795
796 2003-03-31  John Levon  <levon@movementarian.org>
797
798         * ControlPrint.C:
799         * ControlDocument.C: more Alert cleanups
800
801 2003-03-29  John Levon  <levon@movementarian.org>
802
803         * ControlSpellchecker.C: Alert cleanup
804
805 2003-03-29  John Levon  <levon@movementarian.org>
806
807         * helper_funcs.C: Alert cleanup
808
809 2003-03-29  John Levon  <levon@movementarian.org>
810
811         * ControlDocument.C: comment out seemingly silly question
812
813 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
814
815         * ControlDialog.tmpl (show): qualify emergency_exit_ with this->
816         (update): ditto
817         (hide): ditto
818
819 2003-03-26  Angus Leeming  <leeming@lyx.org>
820
821         * ControlThesaurus.[Ch]: rewrite to use the Dialog-based scheme.
822
823 2003-03-25  John Levon  <levon@movementarian.org>
824
825         * ControlSpellchecker.C: support for new aspell
826
827 2003-03-25  Angus Leeming  <leeming@lyx.org>
828
829         * ControlLog.[Ch]:
830         * ControlShowFile.[Ch]:
831         * ControlVCLog.[Ch]: rewrite to use the Dialog-based scheme.
832
833 2003-03-24  John Levon  <levon@movementarian.org>
834
835         * ControlMath.C: include Pr function
836
837 2003-03-23  John Levon  <levon@movementarian.org>
838
839         * ControlSpellchecker.C: make "words checked" translatable,
840         from Michael Schmitt
841
842 2003-03-18  John Levon  <levon@movementarian.org>
843
844         * ControlParagraph.C: make reading of params succeed
845
846 2003-03-13  Rob Lahaye  <lahaye@snu.ac.kr>
847
848         * ControlChanges.[Ch]: ControlChanges::find() returns the bool
849         from lyxfind::findNextChange(), instead of void.
850
851 2003-03-13  Angus Leeming  <leeming@lyx.org>
852
853         * Dialog.h (initialiseParams): return a bool to indicate successful
854         translation of the string.
855
856         * Dialog.h:
857         * Kernel.h
858         * ControlAbout.h: a serious attempt at documenting the code.
859
860         * ButtonController.[Ch] (readWrite): it wasn't used, so remove it.
861         (invalid): ditto.
862
863         * ButtonController.[Ch]:
864         * BCView.[Ch], BCView.tmpl: make many methods const.
865
866 2003-03-13  Angus Leeming  <leeming@lyx.org>
867
868         * ControlParagraph.[Ch]: rewrite to use the Dialog-based scheme and
869         the new dispatch lfuns.
870
871 2003-03-12  Angus Leeming  <leeming@lyx.org>
872
873         * ControlCharacter.[Ch]: rewrite to use the Dialog-based scheme and
874         the new dispatch lfuns.
875
876 2003-03-09  Angus Leeming  <leeming@lyx.org>
877
878         Flatten the ButtonController tree by splitting it into a Controller
879         and a View.
880
881         * BCView.[Ch], BCView.tmpl: new files containing the View part of the
882         ButtonController.
883
884         * ButtonController.[Ch]: just the controller, which needs know only
885         two methods of the View, refresh and refreshReadOnly.
886
887         * lots of files: associated changes.
888
889 2003-03-09  Angus Leeming  <leeming@lyx.org>
890
891         * ControlChanges.[Ch]: rewrite to use the Dialog-based scheme.
892
893 2003-03-09  Angus Leeming  <leeming@lyx.org>
894
895         * ControlAboutlyx.[Ch]: rewrite to use the Dialog-based scheme.
896
897 2003-03-09  Angus Leeming  <leeming@lyx.org>
898
899         * ControlTabularCreate.[Ch]: rewrite to use the Dialog-based scheme.
900
901 2003-03-09  Angus Leeming  <leeming@lyx.org>
902
903         * ControlTabular.[Ch]: rewrite to use the Dialog-based scheme.
904
905 2003-03-09  Angus Leeming  <leeming@lyx.org>
906
907         * ControlTabular.[Ch]: minimise the interface in preparation for
908         a move to the Dialog-based scheme.
909         (inset): removed; the views require only getActiveCell().
910         (tabular): return as a reference.
911
912 2003-03-07  Angus Leeming  <leeming@lyx.org>
913
914         * ControlGraphics.[Ch]: rewrite to use the Dialog-based scheme.
915
916         * ControlInset.{h, tmpl}: remove.
917         * Makefile.am: remove files.
918
919 2003-03-07  Angus Leeming  <leeming@lyx.org>
920
921         * ControlBibitem.[Ch]:
922         * ControlIndex.[Ch]:
923         * ControlLabel.[Ch]:
924         * ControlUrl.[Ch]: removed.
925
926         * Makefile.am: remove files.
927
928         * ControlERT.C (dispatchParams):
929         * ControlExternal.C (dispatchParams):
930         * ControlFloat.C (dispatchParams):
931         * ControlInclude.C (dispatchParams):
932         * ControlWrap.C (dispatchParams): no need to pass name to Mailer
933         anymore.
934
935         * ControlMinipage.[Ch]: rewrite to use the Dialog-based scheme.
936
937 2003-03-05  Angus Leeming  <leeming@lyx.org>
938
939         * ControlWrap.[Ch]: rewrite to use the Dialog-based scheme.
940
941         * ControlFloat.[Ch]: move insetfloat.h into the .C file.
942
943         * ControlFloat.[Ch]: rewrite to use the Dialog-based scheme.
944         * ControlInclude.C: remove unneeded header files.
945
946         * ControlFloat.[Ch]: replace FloatParams with InsetFloatParams.
947
948         * ControlInclude.[Ch]: rewrite to use the Dialog-based scheme.
949
950         * ControlExternal.[Ch]: rewrite to use the Dialog-based scheme.
951
952         * Dialog.h: make view() public. Add dialog() methods.
953
954 2003-02-28  Alfredo Braunstein  <abraunst@libero.it>
955
956         * ControlGraphics.C: removed #include "converter.h"
957         * ControlPrefs.C:
958         * ControlSendto.C: added #include "format.h"
959
960 2003-02-27  Angus Leeming  <leeming@lyx.org>
961
962         * ControlLabel.[Ch]: new files. A controller for the Label dialog.
963
964         * Makefile.am: add the new files.
965
966 2003-02-27  Angus Leeming  <leeming@lyx.org>
967
968         * ControlBibitem.C (c-tor):
969         * ControlBibtex.C (c-tor):
970         * ControlCitation.C (c-tor):
971         * ControlIndex.C (c-tor):
972         * ControlRef.C (c-tor):
973         * ControlToc.C (c-tor):
974         * ControlUrl.C (c-tor):
975         pass "name" to ControlCommand c-tor,
976         not an LFUN.
977
978         * ControlCommand.[Ch] (c-tor, dispatchParams): use "name" rather than a
979         specific LFUN.
980
981         * ControlERT.C (dispatchParams): use "name" rather than a
982         specific LFUN.
983
984 2003-02-25  Dekel Tsur  <dekelts@tau.ac.il>
985
986         * ControlDocument.C (apply): Call to setLanguage() after updating bp_;
987
988 2003-02-21  Angus Leeming  <leeming@lyx.org>
989
990         * Dialog.[Ch]:
991         * Kernel.[Ch]: a new, transparent MCV split of the dialogs code.
992
993         * ControlBibitem.[Ch]:
994         * ControlBibtex.[Ch]:
995         * ControlCitation.[Ch]:
996         * ControlCommand.[Ch]:
997         * ControlError.[Ch]:
998         * ControlIndex.[Ch]:
999         * ControlRef.[Ch]:
1000         * ControlToc.[Ch]:
1001         * ControlUrl.[Ch]: New MCV design leads to cleaner code for the
1002         individual controllers too.
1003         Move 'apply' code into the LyX kernel.
1004
1005         * ControlConnections.C: temporary renaming of Dialogs::signals.
1006
1007         * Makefile.am: add new files.
1008
1009 2003-02-21  Angus Leeming  <leeming@lyx.org>
1010
1011         * ControlBibtex.C (Browse):
1012         * ControlExternal.C (Browse):
1013         * ControlGraphics.C (Browse):
1014         * ControlInclude.C (Browse):
1015         * ControlPrefs.C (browsebind, browseUI, browsekbmap, browsedict,
1016         browse, browsedir):
1017         * ControlPrint.C (Browse):
1018         don't pass a LyXView & to browseFile et al.
1019         * helper_funcs.[Ch] (browseFile, browseRelFile, browseDir):
1020         don't pass a LyXView & to fileDlg.
1021
1022 2003-02-17  John Levon  <levon@movementarian.org>
1023
1024         * ControlDialog.tmpl: build dialog before calling setParams
1025           for the benefit of ControlSpellchecker
1026
1027         * ControlSpellchecker.h:
1028         * ControlSpellchecker.C: rework. Lots of bugs fixed and
1029           cleanups.
1030
1031 2003-02-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1032
1033         * ControlBibtex.[Ch]: new function getBibFiles() (provides list
1034         of available *.bib-files from bibFiles.lst).
1035
1036         * tex_helpers.C (getTexFileList): sort and dis-duplicate
1037         listWithoutPath correctly.
1038
1039 2003-02-08  John Levon  <levon@movementarian.org>
1040
1041         * ControlPrefs.h:
1042         * ControlPrefs.C: call setCurrentAuthor explicitly on apply()
1043
1044 2003-02-08  John Levon  <levon@movementarian.org>
1045
1046         * Makefile.am:
1047         * ControlChanges.h:
1048         * ControlChanges.C: add merge changes dialog
1049
1050         * ControlPrefs.h:
1051         * ControlPrefs.C: add setCurrentAuthor()
1052
1053 2003-01-31  Angus Leeming  <leeming@lyx.org>
1054
1055         * ViewBase.h: add an isVisible() pure virtual method.
1056
1057         * ControlTabular.C (updateInset): don't build the dialog here.
1058         Instead, do nothing if the dialog is invisible.
1059
1060 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
1061
1062         * ControlSpellchecker.[Ch]: Remove XForms RTL hacks.
1063
1064 2003-01-11  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1065
1066         * helper_funcs.[Ch]: implement browseDir (browse directory) [bug 824]
1067
1068         * ControlPrefs.[Ch]: implement browsedir for the use of use browseDir.
1069
1070 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1071
1072         * ControlDocument.C: use BoostFormat.h instead of boost/format.hpp
1073
1074 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1075
1076         * several files: ws changes
1077
1078 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1079
1080         * ControlDocument.C (classApply): use boost.format
1081
1082 2002-11-29  Angus Leeming  <leeming@lyx.org>
1083
1084         * ControlButtons.h (isClosing): make it public, so that the view can
1085         see it too.
1086         (OKButton): no longer virtual. ControlPrefs should use isClosing() from
1087         within apply.
1088
1089         * ControlPrefs.[Ch] (OKButton): removed.
1090
1091         * ControlPrefs.C (apply): dispatch a LFUN_SAVEPREFERENCES if the
1092         dialog isClosing(). (Ie, if the "save" button has been pressed.)
1093
1094 2002-11-28  John Levon  <levon@movementarian.org>
1095
1096         * ControlSpellchecker.C: fix Lars' broken cleanup
1097
1098 2002-11-27  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1099
1100         * ControlTabular.[Ch]: Add isMulticolumnCell
1101
1102 2002-11-27  Angus Leeming  <leeming@lyx.org>
1103
1104         * ControlMath.C (ControlMath): initialise active_.
1105
1106 2002-11-25  Angus Leeming  <leeming@lyx.org>
1107
1108         * ControlDialog.h (hide, update): move from protected to public.
1109
1110         * ControlMath.[Ch]: add controllers for the main math panel dialog and
1111         for any daughter dialogs stored by the main panel.
1112
1113 2002-11-21  Angus Leeming  <leeming@lyx.org>
1114
1115         * ControlDocument.[Ch] (classApply): no longer returns bool.
1116         (loadTextclass): new method. Wrapper for textclasslist[tc].load().
1117
1118 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1119
1120         * biblio.C (getAbbreviatedAuthor): use boost::format
1121
1122         * ControlSpellchecker.C (clearParams): use boost::format
1123
1124 2002-11-20  John Levon  <levon@movementarian.org>
1125
1126         * ControlMath.C: couple more manglings
1127
1128 2002-11-20  John Levon  <levon@movementarian.org>
1129
1130         * ControlMath.h:
1131         * ControlMath.C: add find_xpm mangler
1132
1133 2002-11-17  John Levon  <levon@movementarian.org>
1134
1135         * helper_funcs.C and users: specify save/open in file dialog
1136
1137 2002-11-15  John Levon  <levon@movementarian.org>
1138
1139         * ControlPrefs.h:
1140         * ControlPrefs.C: use setParams()
1141
1142 2002-11-15  John Levon  <levon@movementarian.org>
1143
1144         * ControlButtons.h: make OKButton() virtual for prefs
1145
1146         * ControlPrefs.h:
1147         * ControlPrefs.C: updates for xforms port to MVC
1148
1149         * Makefile.am:
1150         * ControlTabular.h:
1151         * ControlTabular.C: add simple MVC port
1152
1153 2002-11-14  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1154
1155         * ControlInclude.C: fix file format masks for qt's use
1156
1157 2002-11-13  John Levon  <levon@movementarian.org>
1158
1159         * Makefile.am:
1160         * ControlPrefs.h:
1161         * ControlPrefs.C: add skeleton controller
1162
1163 2002-11-12  John Levon  <levon@movementarian.org>
1164
1165         * biblio.C: fix warnings
1166
1167 2002-11-12  Angus Leeming  <leeming@lyx.org>
1168
1169         * ControlSpellchecker.C (check): fix crash
1170         * biblio.C (escape_special_chars): simplify BRE.
1171
1172 2002-11-07  Edwin Leuven  <leuven@fee.uva.nl>
1173
1174         * ControlDocument.[Ch]: Remove unused method
1175
1176 2002-11-07  Angus Leeming  <leeming@lyx.org>
1177
1178         * ChangeLog, biblio.C: * Add RegEx to the compiled boost files.
1179         * clean-up the search code in biblio.C.
1180
1181 2002-11-07  John Levon  <levon@movementarian.org>
1182
1183         * ControlGraphics.C: QGraphics fixes
1184
1185 2002-11-07  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1186
1187         * ControlDocument.C: (SaveAsDefault) make it work.
1188         fix buffer update on class change
1189
1190 2002-11-06  Angus Leeming  <leeming@lyx.org>
1191
1192         * biblio.C (searchKeys and helper functions): rewritten entirely
1193         using the STL. Boost::regex searching now works as the old 1.2 code
1194         did.
1195
1196 2002-11-06  Angus Leeming  <leeming@lyx.org>
1197
1198         * biblio.C: clean-up of the code. No change in functionality.
1199
1200 2002-11-04  Angus Leeming  <leeming@lyx.org>
1201
1202         * ControlGraphics.[Ch] (getUnits): moved out of class and into
1203         frnt::getBBUnits(). Code cleaned also.
1204
1205 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1206
1207         * biblio.C (regexSearch): STRCONV
1208         (getInfo): ditto
1209
1210         * ControlAboutlyx.C (getVersion): STRCONV
1211
1212         * ControlMath.C: include config.h
1213
1214 2002-10-31  John Levon  <levon@movementarian.org>
1215
1216         * ControlGraphics.h:
1217         * ControlGraphics.C: bb units from Herbert
1218
1219 2002-10-29  Rob Lahaye  <lahaye@snu.ac.kr>
1220
1221         * ControlParagraph.[Ch] (alignDefault): new method, returning the
1222         default alignment (block, left, right, center) of this paragraph.
1223
1224 2002-10-25  John Levon  <levon@movementarian.org>
1225
1226         * ControlPrint.C: using endl
1227
1228 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
1229
1230         * ControlPrint.[Ch]: move code here from Liason.[Ch].
1231
1232         * ControlSpellchecker.h (getCount): new method.
1233         * ControlSpellchecker.[Ch]: constify some accessor methods.
1234
1235 2002-10-22  Angus Leeming  <leeming@lyx.org>
1236
1237         * Makefile.am (libcontrollers_la_SOURCES): arrange list into
1238         alphabetical order once again.
1239
1240         * ButtonControllerBase.[Ch]: define an abstract base class CheckedWidget
1241         Add a list of CheckedWidget ptrs to ButtonControllerBase
1242         together with methods addCheckedWidget and checkWidgets to use it.
1243
1244         * ButtonController.tmpl (refresh): use the return value of
1245         checkWidgets to control the activation state of the Ok, Apply, Restore
1246         buttons.
1247
1248         * ControlDialog.tmpl (show, update):
1249         * ControlInset.tmpl (showInset, update):
1250         invoke ButtonController::refresh to ensure that the activation state of
1251         the Ok, Apply buttons reflects the valid-state of the widgets.
1252
1253 2002-10-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1254
1255         * tex_helpers.C (rescanTexStyles): don't pop p
1256         (texhash): ditto
1257
1258         * ControlWrap.C (WrapParms): remove initialization of placement,
1259         and move empty c-tor to .h class def.
1260
1261         * ControlVCLog.C (getVCLogFile): operator on std::ostream instead
1262         of on stringsteam, return void. Get the file into the stream as
1263         fast as possible.
1264
1265         * ControlPreamble.[Ch] (params): getter and setter for params_, make
1266         params_ into a string, not just a pointer to string.
1267
1268         * ControlExternal.C (getTemplateNumber): put i into the for scope,
1269         and use the sequence operator on the last for "parameter"
1270         (getTemplate): use std::advance to advance the iterator.
1271
1272         * ControlAboutlyx.C (getCredits): Operate on s std::ostream
1273         instead of on a stringstream, return void. Get the file into the
1274         stream as fast as possible.
1275         (getVersion): use ostringstream
1276
1277         * lots of files: ws changes, formatting fixes
1278
1279 2002-10-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
1280
1281         * ControlCharacter.C (apply): setMinibuffer change
1282         * ControlDocument.C (apply): ditto
1283         (classApply): ditto
1284         * ControlThesaurus.C (replace): ditto
1285         * ControlSearch.C (find): ditto
1286         (replace): ditto
1287         * ControlPreamble.C (apply): ditto
1288         * ControlParagraph.C (apply): ditto
1289
1290 2002-10-14  André Pönitz <poenitz@gmx.net>
1291
1292         * ControlDocument.C: somebody else's fix for a hard lockup
1293
1294 2002-10-09  Edwin Leuven <leuven@fee.uva.nl>
1295
1296         * ControlDocument.h:
1297         * ControlDocument.C:
1298         * Makefile.am: New document parameters controller
1299
1300 2002-09-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1301
1302         * Makefile.am (INCLUDES): loose SIGC_INCLUDES
1303
1304 2002-09-24  Angus Leeming  <leeming@lyx.org>
1305
1306         * ControlConnections.h: remove trailing whitespace.
1307
1308         * biblio.h: #include "LString.h".
1309
1310 2002-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
1311
1312         * ControlGraphics.C: Change GUI origin strings into proper English.
1313
1314 2002-09-09  John Levon  <levon@movementarian.org>
1315
1316         * ControlInclude.C: fix file masks. Get rid of noload,
1317         remove stupid warning
1318
1319 2002-09-09  John Levon  <levon@movementarian.org>
1320
1321         * ControlMath.h:
1322         * ControlMath.C: add latex_deco
1323
1324 2002-09-06  John Levon  <levon@movementarian.org>
1325
1326         * ControlMath.C: terminate dots
1327
1328 2002-09-05  Angus Leeming  <leeming@lyx.org>
1329
1330         * all files: modify the headers as discussed on the list.
1331
1332 2002-08-30  John Levon  <levon@movementarian.org>
1333
1334         * ControlMath.h:
1335         * ControlMath.C: moved from MathsSymbols.C
1336
1337 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1338
1339         * ControlFloat.C (applyParamsToInset): wide() now has two arguments
1340
1341 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
1342
1343         * ControlGraphics.C: make rotationOrigin's default ("leftBaseline") the
1344         first item in the list
1345
1346 2002-08-15  Angus Leeming  <leeming@lyx.org>
1347
1348         * ControlConnections.C: Dialogs::redrawGUI is now a method not a signal.
1349
1350         * ControlParagraph.C: no longer bind to Dailogs::updateParagraph.
1351
1352 2002-08-15  Angus Leeming  <leeming@lyx.org>
1353
1354         * lots: changed my email address to leeming@lyx.org.
1355
1356         * GUI.h: return it to private derivation from boost::noncopyable.
1357
1358 2002-08-14  Angus Leeming  <leeming@lyx.org>
1359
1360         * GUI.h: public derivation from boost::noncopyable.
1361
1362 2002-08-14  Angus Leeming  <leeming@lyx.org>
1363
1364         * GUI.h: class GUI deries from boost::noncopyable
1365
1366         * ControlButtons.h: no longer derives from DialogBase, but instead
1367         derives directly from boost::noncopyable.
1368
1369         * ViewBase.h: derives from boost::noncopyable.
1370
1371         * ControlCharacter.C:
1372         * ControlCommand.C:
1373         * ControlConnections.C:
1374         * ControlGraphics.C:
1375         * ControlInclude.C:
1376         * ControlParagraph.C:
1377         * ControlPreamble.C:
1378         * ControlPrint.C:
1379         * ControlSearch.C:
1380         * ControlSpellchecker.C:
1381         * ControlTexinfo.C:
1382         * ControlThesaurus.C:
1383         rearrange #includes. Remove unnecessary ones.
1384
1385         * ControlError.h: add "insets/inseterror.h".
1386
1387         * helper_funcs.h: add necessary #includes.
1388
1389         * tex_helpers.[Ch]: add #pragma directives for g++.
1390
1391         * Makefile.am: remove src/frontends from -I list to compiler.
1392
1393 2002-08-13  Angus Leeming  <leeming@lyx.org>
1394
1395         * ControlConnections.C:
1396         * ControlTexinfo.C:
1397         changes due to the changed LyXView interface that now returns references
1398         to member variables not pointers.
1399
1400 2002-08-12  Angus Leeming  <leeming@lyx.org>
1401
1402         * ControlConnections.[Ch]: (isReadonly): renamed as bufferIsReadonly.
1403         (bufferIsAvailable, bufferview, buffer, lyxfunc): new methods. Wrappers
1404         for the most commonly accessed core methods, to minimise code
1405         dependiencies.
1406
1407         * many files: use these wrappers and remove associated #includes.
1408
1409 2002-08-12  Angus Leeming  <leeming@lyx.org>
1410
1411         * ControlButtons.[Ch] (bc, view): no longer virtual.
1412         (setView, setButtonController): new methods, invoked by GUI.
1413
1414         * ControlDialog.h (show):
1415         * ControlInset.h (createInset, showInset): make public, so that GUI can
1416         invoke them.
1417
1418         * GUI.h: GUI now contains a controller, rather than deriving from it.
1419         remove all those friend functions since we can now access the show,
1420         createInset, showInset controller methods.
1421
1422         * ViewBase.h: simplifiy, enabling ControlButtons to be forward-declared.
1423         (ViewBC): scrapped.
1424
1425         * character.h: #include a couple of STL files.
1426
1427 2002-08-08  John Levon  <levon@movementarian.org>
1428
1429         * ControlCommandBuffer.C: LyXAction cleanup
1430
1431 2002-08-07  John Levon  <levon@movementarian.org>
1432
1433         * ControlSpellchecker.C: fix crash when spellchecker doesn't
1434           initialise
1435
1436 2002-08-06  John Levon  <levon@movementarian.org>
1437
1438         * ControlSpellchecker.C:
1439         * ControlSpellchecker.h: use WordLangTuple
1440
1441 2002-08-06  John Levon  <levon@movementarian.org>
1442
1443         * ControlSpellchecker.C: show an alert with the
1444           error message on initialisation failure
1445
1446 2002-08-04  John Levon  <levon@movementarian.org>
1447
1448         * ControlSpellchecker.h:
1449         * ControlSpellchecker.C: some cleanups
1450
1451         * ControlTabularCreate.C: s/LFUN_INSET_TABULAR/LFUN_TABULAR_INSERT/
1452  <
1453 2002-08-02  Edwin Leuven <leuven@fee.uva.nl>
1454
1455         * ControlParagraph.[Ch] (changedParagraph): new method invoked when
1456         the Dialogs::updateParagraph signal is emitted.
1457
1458 2002-08-02  Angus Leeming  <leeming@lyx.org>
1459
1460         * ControlCharacter.C (apply):
1461         * ControlERT.C (applyParamsToInset):
1462         * ControlParagraph.C (apply):
1463         * ControlSearch.C (find, replace):
1464         * ControlThesaurus.C (replace): changes due to LyXView::view() now
1465         returning a boost::shared_ptr.
1466
1467 2002-08-01  John Levon  <levon@movementarian.org>
1468
1469         * ControlSendto.C: writeFile() change
1470
1471 2002-08-01  John Levon  <levon@movementarian.org>
1472
1473         * ControlSpellchecker.h:
1474         * ControlSpellchecker.C: remove options
1475
1476 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1477
1478         * several files: strip,frontStrip -> trim,ltrim,rtrim
1479
1480 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1481
1482         * biblio.C (parseBibTeX): modify because of strip changes
1483
1484 2002-07-24  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1485
1486         * ControlFloat.[Ch]: Implement Wide Float toggle
1487         Replace "allow_here_definitely" by "wide"
1488
1489 2002-07-22  Herbert Voss  <voss@lyx.org>
1490
1491         * ControlGraphics.C: small changes
1492
1493 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1494
1495         * ControlToc.C: remove getType
1496
1497 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
1498
1499         * ControlCommandBuffer.C: don't add "" to history
1500
1501 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
1502
1503         * ControlRef.C: fix dispatch call nicely
1504
1505 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
1506
1507         * Makefile.am:
1508         * ControlCommandBuffer.h:
1509         * ControlCommandBuffer.C: add controller for command (mini) buffer
1510           handling
1511
1512 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
1513
1514         * ControlRef.C: fix dispatch call
1515
1516 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1517
1518         * ControlCharacter.C: use view_state_changed not setState
1519
1520 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1521
1522         * biblio.C (parseBibTeX): use ascii_lowercase instead of lowercase
1523
1524 2002-07-15  Mike Fabian  <mfabian@suse.de>
1525
1526         * biblio.C (compareNoCase): use the compare_ascii_no_case instead
1527         of compare_no_case, because in turkish, 'i' is not the lowercase
1528         version of 'I', and thus turkish locale breaks parsing of tags.
1529
1530 2002-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1531
1532         * ControlBibtex.C (applyParamsToInset): ws change
1533
1534 2002-06-27  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1535
1536         * ControlInclude.C: Add warning if absolute path name and
1537         check_typeset is used together
1538
1539 2002-06-28  Angus Leeming  <leeming@lyx.org>
1540
1541         * ControlGraphics.C: changes associated with the name changes
1542         grfx::GCache -> grfx::Cache and grfx::GImage -> grfx::Image.
1543
1544 2002-06-25  Angus Leeming  <leeming@lyx.org>
1545
1546         * ControlGraphics.C (readBB): Channges associated with the changed
1547         interface to the graphics cache.
1548
1549 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1550
1551         * ControlParagraph.C: layout as layout
1552
1553 2002-06-21  Angus Leeming  <leeming@lyx.org>
1554
1555         * tex_helpers.C: Use <vector> not <vector.h>. Reorder header files.
1556         * tex_helpers.h: #include "LString.h".
1557
1558 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1559
1560         * ControlBibtex.C:
1561         * ControlBibitem.C: use repaint()
1562
1563 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1564
1565         * ControlTexinfo.C: do the same for Texinfo
1566
1567         * tex_helpers.C: don't try to read a file that isn't there
1568
1569 2002-06-21  Herbert Voss  <voss@perce.de>
1570
1571         * ControlBibtex.C: do an automatic update, when no bst-list
1572         exists
1573
1574 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1575
1576         * GUI.h: createIndex() changed
1577
1578 2002-06-18  Herbert Voss  <voss@perce.de>
1579
1580         * tex_helpers.[Ch]: move functions from ControlTexinfo into this
1581         helperstuff. Now the bibtex gui can use some of these functions
1582
1583 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
1584
1585         * ControlGraphics.C: just make the mask *.*
1586
1587 2002-06-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1588
1589         * changes to simplify function setup, removal of a lot of includes.
1590
1591 2002-06-12  Angus Leeming  <leeming@lyx.org>
1592
1593         * ControlParagraph.[Ch]: forward declare ParagraphParameters.
1594
1595 2002-06-12  Angus Leeming  <leeming@lyx.org>
1596
1597         * ControlInset.tmpl: add missing header file, ButtonControllerBase.h.
1598
1599 2002-06-11  Edwin Leuven  <leuven@fee.uva.nl>
1600
1601         * ControlParagraph.[Ch]: new paragraph controller
1602         * GUI.h: add new controller
1603         * Makefile.am: ditto
1604
1605 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1606
1607         * GUI.h: do not include ButtonController.tmpl
1608
1609         * ControlInset.h: include ControlInset.tmpl
1610
1611         * ControlCitation.C: do not include ControlInset.tmpl
1612         * ControlCommand.C: ditto
1613         * ControlERT.C: ditto
1614         * ControlError.C: ditto
1615         * ControlExternal.C: ditto
1616         * ControlFloat.C: ditto
1617         * ControlGraphics.C: ditto
1618         * ControlInclude.C: ditto
1619         * ControlMinipage.C: ditto
1620
1621         * ControlDialog.tmpl: remove the Base:: prefix
1622
1623 2002-06-07  Angus Leeming  <leeming@lyx.org>
1624
1625         Fixes needed to compile with Compaq cxx 6.5.
1626         * ControlDialog.tmpl: I have had to prefix base class methods with
1627         Base:: Wierd!
1628
1629         * ControlInset.tmpl: #include a couple of headers.
1630
1631 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1632
1633         * switch from SigC signals to boost::signals
1634
1635 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1636
1637         * biblio.h: include vector
1638
1639         * biblio.C: change include order
1640         (regexSearch): use boost regex and get rid of LRegex
1641
1642 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1643
1644         * ControlAboutlyx.C:
1645         * ControlBibitem.C:
1646         * ControlBibtex.C:
1647         * ControlCharacter.C:
1648         * ControlCitation.C:
1649         * ControlCommand.C:
1650         * ControlConnections.C:
1651         * ControlERT.C:
1652         * ControlError.C:
1653         * ControlExternal.C:
1654         * ControlFloat.C:
1655         * ControlForks.C:
1656         * ControlGraphics.C:
1657         * ControlInclude.C:
1658         * ControlIndex.C:
1659         * ControlLog.C:
1660         * ControlMinipage.C:
1661         * ControlPreamble.C:
1662         * ControlPrint.C:
1663         * ControlRef.C:
1664         * ControlSearch.C:
1665         * ControlSendto.C:
1666         * ControlShowFile.C:
1667         * ControlSpellchecker.C:
1668         * ControlTabularCreate.C:
1669         * ControlTexinfo.C:
1670         * ControlThesaurus.C:
1671         * ControlToc.C:
1672         * ControlUrl.C:
1673         * ControlVCLog.C: LyXView moved into frontends
1674
1675 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1676
1677         * ControlExternal.C: add scoped_ptr.hpp
1678
1679         * ControlCharacter.h: use more specific smart_ptr header.
1680
1681 2002-05-21  Angus Leeming  <a.leeming@ic.ac.uk>
1682
1683         * frnt_lang.C (getLanguageData): change a couple of N_() to _().
1684
1685 2002-05-13  Herbert Voss  <voss@perce.de>
1686
1687         * biblio.C (getAbbreviatedAuthor): fix bug with "and" for Authors
1688         like "Odland, G. and ... "
1689         (parseBibTeX): fix bug with title and booktitle
1690         and replace a \n with a space when one entry has more than
1691         one line
1692
1693 2002-05-01  Angus Leeming  <a.leeming@ic.ac.uk>
1694
1695         * ControlCharacter.C: use "ignore" and "reset" as the identifiers, not
1696         "No change" and "Reset".
1697
1698         * frnt_lang.C: ditto. Further, do not sort thes two entries. Ie, leave
1699         them at the front of the list.
1700
1701 2002-05-01  Angus Leeming  <a.leeming@ic.ac.uk>
1702
1703         * ControlGraphics.C: add some comments to the char * arrays.
1704         Make rorigin_size const.
1705
1706 2002-04-30  Angus Leeming  <a.leeming@ic.ac.uk>
1707
1708         * ControlGraphics.[Ch] (getRotationOriginData): new helper function.
1709         Enables the gui's to internationalise these strings.
1710
1711 2002-04-30  John Levon  <moz@compsoc.man.ac.uk>
1712
1713         * frnt_lang.C: fix build
1714
1715 2002-04-30  Angus Leeming  <a.leeming@ic.ac.uk>
1716
1717         * frnt_lang.[Ch] (getLanguageData): passed a bool character_dlg.
1718         If the the caller is the character dialog, add "No change" and "Reset"
1719         to the vector, else don't.
1720         Internationalise the GUI strings here rather than in the different
1721         calling dialogs.
1722         Sort the translated strings, albeit simply.
1723
1724 2002-04-29  Angus Leeming  <a.leeming@ic.ac.uk>
1725
1726         * character.[Ch]: rename namespace character as namespace frnt.
1727
1728         * frnt_lang.[Ch]: new file. Move getLanguageData from character.[Ch]
1729         as several dialogs will use this info. The function now returns a
1730         vector<LanguagePair> where LanguagePair is a display string and an
1731         identifying string. The display string is internationalised.
1732
1733         * ControlCharacter.C (getLanguage, setLanguage): Do not internationalise
1734         the identifying strings, "No change" and "Reset".
1735
1736         * Makefile.am: add frnt_lang.[Ch].
1737
1738 2002-04-25  Herbert Voss  <voss@lyx.org>
1739
1740         * ControlSendto.C (allFormats): don't add the graphics extensions to the
1741         export menu
1742
1743 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
1744
1745         * biblio.C (getAbbreviatedAuthor, getYear): Deal with sub-standard
1746         BibTeX databases in a WYSIWYM way.
1747
1748 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
1749
1750         * biblio.C (getAbbreviatedAuthor, getYear): Cæsar is dead. RIP; he was
1751         way past his use-by date.
1752         Make use of the improved info from Buffer::getBibkeyList when using
1753         \bibliography. Enables us to provide natbib support in this case too.
1754
1755 2002-04-19  Marco Morandini <morandini@aero.polimi.it>
1756
1757         * ControlGraphics.C: pass the browseFile dialog a string of only those
1758         formats that can currently be loaded by LyX.
1759
1760 2002-04-15  Herbert Voss  <voss@perce.de>
1761
1762         * biblio.[Ch] (parseBibTeX): fix bug while scanning bibtexentries
1763         with something like ,,...blah...`` (two commas)
1764
1765 2002-04-14  Herbert Voss  <voss@perce.de>
1766
1767         * helper_funcs.[Ch]: move the getVectorFromString and the vice versa
1768         into the support/lstrings for better use in other programs.
1769
1770         * biblio.[Ch] (getYear, getAbbreviatedAuthor, familyName): move out of
1771         namespace anon and make globally accessible.
1772         (familyName): test for the presence of a LaTeX Space at the front of
1773         of a name; strip it if it exists.
1774
1775 2002-04-11  Herbert Voss  <voss@perce.de>
1776
1777         * ControlGraphics.C: expand "browse-string" to all available formats
1778
1779 2002-04-11  Herbert Voss  <voss@perce.de>
1780
1781         * ControlGraphics.C: read BoundingBox also from non (e)ps files.
1782
1783 2002-04-08  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1784
1785         * ControlAboutlyx.C (getVersion): two _() forgotten
1786
1787 2002-04-08  John Levon  <moz@compsoc.man.ac.uk>
1788
1789         * ControlGraphics.C:
1790         * ControlPrint.C:
1791         * ControlBibtex.C: make N_() be _()
1792
1793 2002-04-07  Herbert Voss  <voss@perce.de>
1794
1795         * ControlGraphics.[C]: move readBB as readBB_from_PSFile into filetools
1796
1797 2002-04-05  Angus Leeming  <a.leeming@ic.ac.uk>
1798
1799         * ControlGraphics.C (readBB): sigh. Make sure that the correct path is
1800         used when reading the BB.
1801
1802 2002-04-04  Angus Leeming  <a.leeming@ic.ac.uk>
1803
1804         * ControlGraphics.C (readBB): Don't open the ifstrem and then
1805         check the format from the contents (and open a second ifstream in the
1806         process. One at a time please.
1807
1808 2002-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
1809
1810         * ControlRef.C (getBufferNum): squash warning message.
1811
1812 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
1813
1814         * ControlBibtex.C (Browse):
1815         * ControlGraphics.C (Browse):
1816         * ControlPrint.C (Browse):  use Jean-Marc's browseRelFile.
1817
1818         * ControlGraphics.[Ch]: replace checkFilename with isFilenameValid.
1819
1820         * ControlGraphics.C (applyParamsToInset): pass filepath to
1821         InsetGraphics::updateInset.
1822
1823 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1824
1825         * most files: ws cleanup
1826
1827 2002-03-18  Angus Leeming  <a.leeming@ic.ac.uk>
1828
1829         * biblio.C (getInfo): string::c_str() never returns NULL. Don't test
1830         for it.
1831
1832 2002-03-18  John Levon  <moz@compsoc.man.ac.uk>
1833
1834         * ControlGraphics.C:
1835         * ControlInclude.C: better error messages
1836
1837 2002-03-11  Herbert Voss  <voss@lyx.org>
1838
1839         * biblio.C (parseBibTeX): fix another minibug with an
1840         ending comma
1841
1842 2002-03-10  Herbert Voss  <voss@lyx.org>
1843
1844         * biblio.C (parseBibTeX): fix bug
1845         (familyName): improve parsing
1846
1847 2002-03-09  Herbert Voss  <voss@lyx.org>
1848
1849         * ControlGraphics.[Ch]: adding checkFilename() for testing
1850         of non-existing files
1851
1852 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1853
1854         * ControlSendto.C (allFormats): fix a iterators are not pointers
1855         problem.
1856
1857 2002-03-06  Angus Leeming  <a.leeming@ic.ac.uk>
1858
1859         * ControlShowFile.h: add a #include "LString.h"
1860
1861 2002-03-05  Herbert Voss  <voss@lyx.org>
1862
1863         * biblio.C (getInfo): simplify if using paragraph layout
1864         "bibliography".
1865
1866 2002-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
1867
1868         * biblio.C (getInfo): return the info field correctly if the key
1869         is not a BibTeX one.
1870         (parseBibTeX): fix crash when data.find('=') returns string::npos.
1871
1872 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
1873
1874         * ControlForks.[Ch]: new files. A controller for the Forked Child
1875         processes dialog, enabling the user to see what forked processes
1876         are running, and, if he so desires, to kill them.
1877
1878         * GUI.h: add class GUIForks.
1879
1880         * Makefile.am: add ControlForks.[Ch].
1881
1882         * ControlGraphics.C (getParams): small change due to change in
1883         insetgraphics.
1884
1885 2002-02-21  Herbert Voss  <voss@lyx.org>
1886
1887         * biblio.C: fix bug with commentlines in a bibentry
1888
1889 2002-02-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1890
1891         * Makefile.am: simpler obj. file compile
1892
1893 2002-02-18  Herbert Voss  <voss@lyx.org>
1894
1895         * ControlGraphics.[Ch]: remove help-file call
1896
1897 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
1898
1899         * helper_funcs.h: wrap the structs firster and seconder up in a
1900         namespace to avoid clashes with those in lyxalgo,h.
1901
1902         * ControlTexinfo.C Changes due to the renaming of support/syscall.[Ch]
1903         as support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
1904
1905 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
1906
1907         * ControlGraphics.C: remove #include "support/syscall.h" as it's not
1908         used.
1909         * ControlTexinfo.C:
1910         change Systemcalls::System to Systemcalls::Wait and
1911         No change of functionality, just reflects the stripped down Systemcalls
1912         class.
1913
1914 2002-02-06  Herbert Voss  <voss@lyx.org>
1915
1916         * ControlGraphics.[C] (readBB): search also in
1917         g'zipped files. If it is useful than PK and compress
1918         should also be supported. use unzipFile() from
1919         support/filetools
1920
1921 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1922
1923         * ControlRef.C (getBufferName): new method to get a real buffer
1924         name from an index.
1925
1926 2002-02-05  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1927
1928         * ControlTexInfo.[Ch]: Removed Help functions.
1929
1930 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
1931
1932         * ControlSpellchecker.C: clear any selection left
1933         (bug #211)
1934
1935 2002-02-01  Herbert Voss  <voss@lyx.org>
1936
1937         * ControlGraphics.[C] (readBB): search only, if it is a
1938         ".?ps" file and look for bb's at end of file
1939
1940 2002-01-30  Herbert Voss  <voss@lyx.org>
1941
1942         * ControlGraphic.[C]: do not search the whole file, when
1943         getting the bb
1944
1945 2002-01-29  Herbert Voss  <voss@lyx.org>
1946
1947         * ControlGraphic.[C]: added a button for document path
1948         when browsing -> bug 222
1949
1950 2002-01-27  Herbert Voss  <voss@lyx.org>
1951
1952         * ControlGraphic.[Ch]: added support for Bounding Box, other
1953         small changes
1954
1955 2002-01-25  Angus Leeming  <a.leeming@ic.ac.uk>
1956
1957         * ControlAboutlyx.h:
1958         * ControlTexinfo.h: added #include "LString.h" where they belong.
1959
1960 2002-01-25  Angus Leeming  <a.leeming@ic.ac.uk>
1961
1962         * ControlCitation.C:
1963         * ControlDialog_impl.C: remove redundant // -*- C++ -*-
1964
1965 2002-01-24  Angus Leeming  <a.leeming@ic.ac.uk>
1966
1967         * ControlInclude.[Ch] (fileExists): remove const type qualifier from
1968         bool return type.
1969
1970 2002-01-20  Herbert Voss  <voss@perce.de>
1971
1972         * ControlInclude.[Ch]: better control of unexistings files
1973         when entered without the browser
1974
1975         * ControlGraphic.C (Browse): add extension "ps" when browsing for
1976         a filename
1977
1978 2002-01-19  Herbert Voss  <voss@perce.de>
1979
1980         * biblio.C (getInfo): fix bug when no author is given
1981
1982         * biblio.C (parseBibTeX): change the parsing, so that
1983         '#'-characters in a bibtex entry are no more a problem.
1984
1985 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1986
1987         * ControlDialog_impl.h (ControlConnectBI>): make ControlDialogBI
1988         derive from ControlDialog<ControlConnectBI> (fixes bug #196)
1989
1990         * helper_funcs.C (browseRelFile): forgot to pass dir2 to browseFile
1991
1992 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1993
1994         * ControlMinipage.h: change MinipageParams::pageWidth to LyXLength
1995
1996         * ControlExternal.C (Browse): add a std:: qualifier
1997
1998 2002-01-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1999
2000         * ControlExternal.C (Browse): simplify to use browseRelFile
2001
2002 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
2003
2004         * ButtonController.tmpl: added // -*- C++ -*-
2005
2006         * ControlCitation.C: #include "ControlInset.tmpl" to instantiate
2007         ControlInset<InsetCommand, InsetCommandParams>::showInset, createInset.
2008         Needed in _one_ of the ControlCommand-derived classes only.
2009
2010 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
2011
2012         * ControlInset.h:
2013         * ControlSearch.h: #include LString.h
2014
2015 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
2016
2017         * ButtonController.h: split into two. The definition remains in
2018         ButtonController.h, the declaration is now in ButtonController.tmpl.
2019         These template methods should be #included when the derived class is
2020         instantiated, in this case in xforms/xformsBC.C and xforms/Dialogs.C
2021         and in the qt2 and gnome equivalents.
2022
2023         * ControlDialogs.h: removed. The definition of class ControlDialog is
2024         now to be found in ControlDialog.h and the declaration of the methods
2025         is in ControlDialog.tmpl. The two template instantiations are performed
2026         in ControlDialog_impl.[Ch], new files also.
2027
2028         * ControlInset.h: split into two. The definition remains in
2029         ControlInset.h, the declaration is now in ControlInset.tmpl.
2030         These template methods should be #included derived class is
2031         instantiated, in this case in 8 other .C files in this directory.
2032
2033         * ControlAboutlyx.[Ch]:
2034         * ControlCharacter.[Ch]:
2035         * ControlCommand.C:
2036         * ControlERT.C:
2037         * ControlError.C:
2038         * ControlExternal.C:
2039         * ControlFloat.C:
2040         * ControlGraphics.C:
2041         * ControlInclude.C:
2042         * ControlLog.[Ch]:
2043         * ControlMinipage.C:
2044         * ControlPreamble.[Ch]:
2045         * ControlPrint.[Ch]:
2046         * ControlSearch.[Ch]:
2047         * ControlShowFile.[Ch]:
2048         * ControlSpellchecker.[Ch]:
2049         * ControlTabularCreate.[Ch]:
2050         * ControlTexinfo.[Ch]:
2051         * ControlThesaurus.[Ch]:
2052         * ControlVCLog.[Ch]: small changes associated with the above ones.
2053
2054         * GUI.h: #include the ButtonController and dialog controller files
2055         here, rather than forward declare them. This is the correct place
2056         for these #includes.
2057
2058         * Makefile.am: add ControlDialog_impl.[Ch] to libcontrollers_la_SOURCES.
2059         Rename ControlDialogs.h as ControlDialog.h.
2060         Add ButtonController.tmpl ControlDialog.tmpl ControlInset.tmpl to
2061         EXTRA_DIST.
2062
2063 2002-01-15  Angus Leeming  <a.leeming@ic.ac.uk>
2064
2065         * ControlInset.h (apply): fix bug unearthed by Michael Koziarski.
2066
2067 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2068
2069         * ControlExternal.C (Browse): use Buffer::filePath; simplify (more
2070         can be done)
2071
2072         * ControlGraphics.C (Browse): remove overzealous shortcut
2073
2074 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
2075
2076         * FormMinipage.C (apply, update): MinipageParams::width renamed
2077         as MinipageParams::pageWidth. InsetMinipage::width  renamed
2078         as InsetMinipage::pageWidth.
2079
2080 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2081
2082         * ButtonController.h (refreshReadOnly): use explicit typename
2083
2084 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2085
2086         * helper_funcs.h (browseFile): add default empty button descriptions.
2087
2088         * ControlGraphics.C (Browse):
2089         * ControlBibtex.C (Browse):
2090         * ControlInclude.C (Browse): add shortcuts to directory buttons
2091
2092 2002-01-12  John Levon  <moz@compsoc.man.ac.uk>
2093
2094         * ControlThesaurus.h:
2095         * ControlThesaurus.C: update to Aiksaurus 0.14
2096
2097 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
2098
2099         * ControlSpellchecker.C (clearParams): show the closing message
2100         only if some words have been checked, thereby fixing
2101         bugzilla bug #52.
2102
2103 2001-12-11  Michael A. Koziarski <michael@koziarski.org>
2104
2105         * ControlFloat.[Ch]: changes to prevent here definitely being used
2106         with wide figures.
2107
2108 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2109
2110         * ControlThesaurus.h: do not include <config.h> in header files
2111
2112 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
2113
2114         * ControlToc.C: changes for floatlist
2115
2116 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
2117
2118         * ControlVCLog.C: use _()
2119
2120 2001-10-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2121
2122         * ControlSpellchecker.C: include <sys/types.h> since FreeBSD needs
2123         that for select.
2124
2125 2001-10-22  Juergen Vigna  <jug@sad.it>
2126
2127         * ControlSpellchecker.C (clearParams): use the error_ message of the
2128         speller_ if available when the spellchecker died.
2129         (setParams): remove double error message display.
2130
2131 2001-10-15  Angus Leeming  <a.leeming@ic.ac.uk>
2132
2133         * ControlMinipage.[Ch] (getUnits): moved to helper_funcs.
2134
2135         * helper_funcs.[Ch] (getLatexUnits): see above.
2136
2137 2001-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2138
2139         * ControlTexinfo.C (getContents): use the right file for .sty files
2140
2141 2001-10-10  Herbert Voss  <voss@perce.de>
2142
2143         * ControlTexinfo.C: new path for the shellscript TeXFiles.sh
2144         and some more stuff from FormTexinfo.C
2145
2146         * ControlShowFile.C: hiding the update-button
2147
2148 2001-10-09  Herbert Voss  <voss@perce.de>
2149
2150         * ControlTexinfo.[Ch]: new files. Display information about the
2151         installed texfiles (cls,sty,bst).
2152
2153         * ControlShowFile.[Ch]: new files. Display the contents of a file.
2154
2155         * GUI.h: added classes GUIShowFile and GUITexinfo.
2156
2157         * Makefile.am: modified appropriately.
2158
2159 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2160
2161         * ControlAboutlyx.C (getVersion): use lyx_version and
2162         lyx_release_date instead of old macros
2163
2164 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
2165
2166         * ControlSpellchecker.C (check): Behaves well now when the spell
2167         library doesn't know a replacement to an incorrect word.
2168
2169 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
2170
2171         * ControlSpellchecker.C (clearParams): place emergency_exit_ in
2172         the correct place. Can now check spelling more than once!
2173
2174 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
2175
2176         * ControlSplash.[Ch]: removed.
2177
2178         * GUI.h: remove GUISplash class.
2179
2180         * ViewBase.h: remove ViewSplash class.
2181
2182         * Makefile.am: remove ControlSplash.[Ch].
2183
2184 2001-09-25  Angus Leeming  <a.leeming@ic.ac.uk>
2185
2186         * ControlButtons.h: add variable emergency_exit_. If set to true, the
2187         view will be shut down.
2188
2189         * ControlDialogs.h:
2190         * ControlInset.h: act on emergency_exit_.
2191
2192         * ControlSpellchecker.C (clearParams): set emergency_exit_ if the
2193         speller fails to launch.
2194
2195 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
2196
2197         * ControlRef.C (getBufferList): use MakeDisplayPath on the list.
2198         * (getLabelList): use MakeAbsPath on the buffer name passed to it.
2199
2200 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
2201
2202         * ControlRef.h (disconnectOnApply): new method. Set to true.
2203         Perhaps make this user-modifiable?
2204
2205 2001-09-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2206
2207         * ControlGraphics.C (Browse): add "jpg" to list of recognized file
2208         extensions.
2209
2210 2001-09-07  Dekel Tsur  <dekelts@tau.ac.il>
2211
2212         * ControlRef.C (getBufferList, getBufferNum): New methods
2213
2214 2001-09-12  Angus Leeming  <a.leeming@ic.ac.uk>
2215
2216         * ControlInset.h (disconnectOnApply): new method. Defines the behaviour
2217         of the dialog when the Apply button is pressed. Defaults to false,
2218         but can be overridden in the daughter classes.
2219
2220         * ControlCitation.h (disconnectOnApply): new method. Set to true.
2221         Perhaps make this user-modifiable?
2222
2223 2001-09-11  Angus Leeming  <a.leeming@ic.ac.uk>
2224
2225         * ControlDialogs.h (show): connect() the dialog on show. All of a sudden
2226         we have dialogs that update their contents when the buffer changes.
2227         Rather embarassing, really!
2228
2229 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
2230
2231         * ControlSearch (replace): change semantics of replace to NOT move on
2232         to the next instance of a word once the present instance has been
2233         replaced unless we are replacing ALL instances of the word.
2234
2235 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
2236
2237         * ControlButtons.[Ch]: added publicly accessible IconifyWithMain method.
2238
2239 2001-09-04  Angus Leeming  <a.leeming@ic.ac.uk>
2240
2241         * ControlCharacter.C: fix Michael's bug: In the "Character layout"
2242         dialog, set all options to "reset", close the dialog, re-open it ->
2243         the options are set incorrectly.
2244
2245         * ControlButtons.[Ch]: add an is_closing_ variable and isClosing method.
2246         When Applying it's useful to know whether the dialog is about to close
2247         or not (no point refreshing the display for example).
2248
2249         * ControlInset.C (apply): use isClosing.
2250
2251 2001-08-25  John Levon  <moz@compsoc.man.ac.uk>
2252
2253         * ControlInset.h:
2254         * ControlDialogs.h: remove bc() hack, now fixed in
2255           Qt2 frontend. use member dialog_built_ instead of shared
2256           static.
2257
2258         * ButtonController.h:
2259         * ButtonPolicies.C: more debug info
2260
2261         * ButtonControllerBase.C: call refresh() when setting readOnly !
2262
2263         * GUI.h: External form has apply, use the right policy
2264
2265         * character.C: fix two off-by-one errors when latex font was removed
2266
2267 2001-08-15  Angus Leeming  <a.leeming@ic.ac.uk>
2268
2269         * ControlInset.h (apply): tentative fix for the press Apply multiple
2270         times and get multiple new Insets problem.
2271
2272 2001-08-24  John Levon  <moz@compsoc.man.ac.uk>
2273
2274         * ControlCharacter.C: fix typo
2275
2276         * ViewBase.h:
2277         * ControlDialogs.C:
2278         * ControlInsets.C: make sure dialog is built before it is shown, so
2279           it works properly the very first time it is shown
2280
2281 2001-08-20  Herbert Voss  <voss@perce.de>
2282
2283         * ControlBibtex.[Ch]: enhanced bibtex-data gui to browse for databases
2284         and styles. Added an option for "bibliography into toc"
2285
2286 2001-08-15  Angus Leeming  <a.leeming@ic.ac.uk>
2287
2288         * character.[Ch]: remove LATEX_TOGGLE from the FONT_STATE enum as
2289         LaTeX is no longer a font property.
2290
2291 2001-08-09  Angus Leeming  <a.leeming@ic.ac.uk>
2292
2293         * GUI.h: Button controller for Reference dialog changed to
2294         NoRepeatedApplyReadOnlyPolicy.
2295
2296         * biblio.C (getInfo): output volume and number info. Move year to end
2297         of string.
2298
2299 2001-08-09  Allan Rae  <rae@lyx.org>
2300
2301         * Makefile.am (SUBDIRS, dist-hook): remove bogus entries.
2302
2303 2001-08-07  Angus Leeming  <a.leeming@ic.ac.uk>
2304
2305         * helper_funcs.C (getVectorFromString): fixed small bug.
2306
2307         * helper_funcs.h (getFirst, getSecond): cleaned up and removed cruft.
2308
2309 2001-08-07  Edwin Leuven  <leuven@fee.uva.nl>
2310
2311         * ControlSpellchecker.C: check next word after insert in personal dict
2312
2313 2001-08-06  Juergen Vigna  <jug@sad.it>
2314
2315         * ControlERT.[Ch]: new file
2316
2317 2001-08-01  Angus Leeming  <a.leeming@ic.ac.uk>
2318
2319         * ControlInset.h: const and non-const forms of params().
2320
2321         * helper_funcs.C (getStringFromVector,getVectorFromString): remove
2322         whitespace from either side of each item.
2323
2324 2001-07-30  Angus Leeming  <a.leeming@ic.ac.uk>
2325
2326         * ControlFloat.h: add a != operator for FloatParams.
2327         Lars, how did you get this to compile!!!
2328
2329         * ControlMinipage.[Ch]: uncommented someone's commenting out of
2330         operator != for MinipageParams. Who's changing stuff and not compiling?
2331
2332 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2333
2334         * Makefile.am (libcontrollers_la_SOURCES): add ControlFloat.h and
2335         ControlFloat.C
2336
2337         * GUI.h: add class GUIFloat
2338
2339         * ControlFloat.[Ch]: new files
2340
2341 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2342
2343         * ControlPrint.C: #include Lassert.h here.
2344
2345 2001-07-26  Baruch Even  <baruch@lyx.org>
2346
2347         * ControlGraphics.C: changed file search string to cover eps, jpeg, gif
2348         and png.
2349
2350 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
2351
2352         * ControlThesaurus.h:
2353         * ControlThesaurus.C:
2354         * GUI.h:
2355         * Makefile.am: thesaurus support
2356
2357 2001-07-23  John Levon  <moz@compsoc.man.ac.uk>
2358
2359         * ControlInclude.h:
2360         * ControlInclude.C: implement ability to load file
2361
2362 2001-07-18  Juergen Vigna  <jug@sad.it>
2363
2364         * ControlSearch.C (replace): changes to lyxfind.h function calls.
2365
2366 2001-07-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2367
2368         * biblio.C (getInfo): add a .c_str() to handle the usual
2369         stringstream pain.
2370
2371 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
2372
2373         * ControlCitation.[Ch]: changes associated with adding natbib support.
2374         New public methods, usingNatbib, getCiteStrings and getCiteStyles.
2375         New static variable citeStyles_.
2376
2377         * biblio.[Ch]: large internal rearrangement.
2378         New public enum CiteStyle.
2379         New public struct CitationStyle.
2380         New public functions getCitationStyle, getCiteCommand, getCiteStyles,
2381         getNumericalStrings, getAuthorYearStrings
2382         (simpleSearch, regexSearch): no longer publicly accessible.
2383
2384         * helper_funcs.C (getStringFromVector): bug fix.
2385
2386 2001-07-16  Baruch Even  <baruch@lyx.org>
2387
2388         * ControlVCLog.h: Added Lsstream.h to includes.
2389
2390 2001-07-17  Angus Leeming  <a.leeming@ic.ac.uk>
2391
2392         * ControlSpellchecker.[Ch]: remove d-tor.
2393
2394 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
2395
2396         * ControlSpellchecker.[Ch]: remove member quit() and some cleaning
2397
2398 2001-07-16  Juergen Vigna  <jug@sad.it>
2399
2400         * ControlSpellchecker.C (show): use the lyxrc.use_pspell flag (if
2401         compiled with USE_PSPELL) to be able to switch between ISpell and
2402         PSpell classes.
2403
2404 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
2405
2406         Consistent use of Lsstream.h:
2407         * ControlAboutlyx.[Ch] (getCredits):
2408         * ControlVCLog.[Ch] (getVCLogFile): std::stringstream -> stringstream.
2409
2410 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
2411
2412         * ControlCredits.[Ch]: removed
2413         * ControlCopyright.[Ch]: removed
2414         * ControlAboutlyx.[Ch]: added (replaces previous)
2415         * GUI.h: removed credits and copyright added about lyx stuff
2416
2417 2001-07-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2418
2419         * ControlSpellchecker.C (getSuggestion):
2420         (getWord): add std:: qualifier
2421
2422 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
2423
2424         * ControlSpellchecker.[Ch]: added
2425         * ViewBase.h: added partialUpdate(int) member
2426         * GUI.h: added spell stuff
2427
2428 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2429
2430         * ControlExternal.C: (*it). -> it->
2431
2432 2001-06-16  Angus Leeming  <a.leeming@ic.ac.uk>
2433
2434         * ButtonController.h: move some included header files out of the
2435         frontends and into here.
2436
2437 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
2438
2439         * ControlCharacter.C (c-tor): cosmetic name change of signal.
2440
2441 2001-06-13  Angus Leeming  <a.leeming@ic.ac.uk>
2442
2443         * *.[h]: added // -*- C++ -*-
2444         * *.[C]: removed // -*- C++ -*-
2445
2446         * ControlCharacter.[Ch]: (setParams): Check contents of font_ to
2447         activate Apply button.
2448         (clearParams): removed.
2449         font_ is now stored as a boost::scoped_ptr.
2450         font_ is no longer deleted on hide(), so it's contents can now be used
2451         by the Font button on the toolbar.
2452         Lots of new methods so that the GUI can easily get the contents of
2453         font_ when it update()s.
2454
2455 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
2456
2457         * ControlCharacter.C (apply): test that font_ exists, thereby preventing
2458         crash when the Font button on the Toolbar is pressed.
2459
2460         * GUI.h: change policy of Character button controller to
2461         OkApplyCancelReadOnlyPolicy.
2462
2463 2001-06-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2464
2465         * ControlToc.C (getContents): don't add anything to the list if it
2466         is supposed to be empty.
2467
2468 2001-06-01  Angus Leeming  <a.leeming@ic.ac.uk>
2469
2470         * helper_funcs.C (getVectorFromString): bug fix.
2471
2472 2001-05-30  Angus Leeming  <a.leeming@ic.ac.uk>
2473
2474         * ButtonController.h
2475         * ButtonControllerBase.[Ch] (refreshReadOnly): new method, called direct
2476         from ButtonControllerBase::readOnly. Updates the state of the widgets
2477         in the read-only list only when the read-only status of the document
2478         changes.
2479         (refresh): moved this stuff into refreshReadOnly.
2480
2481 2001-05-18  Angus Leeming  <a.leeming@ic.ac.uk>
2482
2483         * ControlPrint.C (c-tor):
2484         * ControlPreamble.C (c-tor): initialise params_ and thereby cure crash.
2485
2486 2001-05-14  Angus Leeming  <a.leeming@ic.ac.uk>
2487
2488         * biblio.C:
2489         * character.h: small clean-ups.
2490
2491 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2492
2493         * ControlToc.C (getType): remove support for old float list.
2494
2495 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
2496
2497         * ControlButtons.h: no longer include ButtonControllerBase.h, ViewBase.h
2498         * ControlGraphics.h: no longer include insetgraphicsParams.h
2499         * ControlInset.h: no longer include LyXView.h
2500
2501         * ControlBibitem.C:
2502         * ControlBibtex.C:
2503         * ControlButtons.C:
2504         * ControlCharacter.C:
2505         * ControlCitation.C:
2506         * ControlCommand.C:
2507         * ControlConnections.C:
2508         * ControlCopyright.C:
2509         * ControlCredits.C:
2510         * ControlError.C:
2511         * ControlExternal.C:
2512         * ControlGraphics.C:
2513         * ControlInclude.C:
2514         * ControlLog.C:
2515         * ControlMinipage.C:
2516         * ControlPreamble.C:
2517         * ControlPrint.C:
2518         * ControlRef.C:
2519         * ControlSearch.C:
2520         * ControlTabularCreate.C:
2521         * ControlToc.C:
2522         * ControlVCLog.C: they're now in here!
2523
2524 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2525
2526         * ButtonControllerBase.h: C++ mode, inherit privately from
2527         noncopyable
2528         * ButtonPolicies.h: ditto
2529
2530         * ButtonController.h: C++ mode, swap init order of restore_ and
2531         cancel_
2532
2533 2001-04-06  John Levon  <moz@compsoc.man.ac.uk>
2534
2535         * ControlTabularCreate.h:
2536         * ControlTabularCreate.C: make dialogs use a pair of uints
2537           instead of a string
2538
2539         * ControlVCLog.h:
2540         * ControlVCLog.C: fill a stringstream with the log contents
2541         and then delete it
2542
2543         * ControlExternal.C: from Angus, clone the new InsetExternal
2544           before acting on it
2545
2546 2001-04-09  Angus Leeming  <a.leeming@ic.ac.uk>
2547
2548         * helper_funcs.C (getStringFromVector, getVectorFromString): fixed bugs
2549         and made more robust.
2550
2551 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2552
2553         * ControlToc.C:
2554         * ControlSearch.C:
2555         * ControlPrint.C:
2556         * ControlPreamble.C:
2557         * ControlInclude.C:
2558         * ControlGraphics.C:
2559         * ControlExternal.C:
2560         * ControlCopyright.C: include gettext.h
2561
2562         * ControlCharacter.C:
2563         * character.C: include gettext.h and language.h
2564
2565 2001-04-03  John Levon  <moz@compsoc.man.ac.uk>
2566
2567         * ButtonController.h:
2568         * ButtonControllerBase.h:
2569         * ButtonControllerBase.C:
2570         * ButtonPolicies.h:
2571         * ButtonPolicies.C:
2572         * ControlButton.h:
2573         * ControlButton.C:
2574         * ControlButtons.h:
2575         * ControlButtons.C:
2576         * ControlConnections.h:
2577         * ControlDialogs.h:
2578         * ControlInset.h:
2579         * ControlExternal.C:
2580         * Makefile.am:
2581         * README:
2582         * ViewBase.h: s/ControlButton/ControlButtons/
2583         s/popup/dialog/
2584         s/UndoAll/Restore/ + associated
2585
2586 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
2587
2588         * ControlToc.[Ch]: new files; a controller for the TOC popup.
2589
2590         * GUI.h:
2591         * Makefile.am: associated changes with all of the above.
2592
2593 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
2594
2595         * ControlExternal.C: bug fixes. Can now apply changes to the inset
2596         and edit, view, update the External Material correctly. I hope!
2597
2598 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
2599
2600         * ButtonController.[Ch]: renamed as ButtonControllerBase.[Ch]
2601
2602         * BCTemplates.h: renamed as ButtonController.h
2603
2604         * ControlBase.[Ch]: renamed as ControlButton.[Ch]. Class named to match.
2605
2606         * ViewBase.h:
2607         * ControlConnections.h: associated change in #include and class names.
2608
2609         * ControlExternal.[Ch]: new files; a controller for the External
2610         Material popup.
2611
2612         * GUI.h:
2613         * Makefile.am: associated changes with all of the above.
2614
2615         * ControlGraphics.[Ch]:
2616         * ControlInclude.[Ch]:
2617         * ControlPrint.[Ch]:
2618         (lv): removed.
2619         (Browse): new method. Returns the results of a FileDialog browse.
2620
2621         * helper_funcs.[Ch] (browseFile): moved from xforms_helpers.[Ch].
2622         (getVectorFromString): fixed bug.
2623
2624         * biblio.C (simpleSearch): cleaned up.
2625
2626 2001-03-29  Angus Leeming  <a.leeming@ic.ac.uk>
2627
2628         * A slight reworking of Baruch Even's ButtonController patch.
2629
2630         * BCTemplates.h: new file; all the templates for the ButtonController.
2631         Including Baruch's new GuiBC class, with setCancelCloseButton() changed
2632         to the more generic setButtonLabel().
2633
2634         * ButtonController.[Ch]: renamed cancel_label and close_label as
2635         cancel_label_ and close_label_.
2636
2637         * Makefile.am: added BCTemplates.h
2638
2639 2001-03-29  Juergen Vigna  <jug@sad.it>
2640
2641         * ControlMinipage.C: removed widthp_ and all it's functions and changed
2642         to use new %-lengths of LyXLength.
2643
2644 2001-03-29  Angus Leeming  <a.leeming@ic.ac.uk>
2645
2646         * ControlCitation.C (bibkeysInfo): removed Assert.
2647
2648         * ControlCopyright.h: moved GUICopyright into GUI.h
2649
2650         * GUI.h: see above.
2651
2652 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
2653
2654         * ControlInset.h (clearDaughterParams): is empty by default, not pure.
2655         (setDaughterParams): a (by default empty) new method called in show().
2656
2657         * ControlBibitem.h:
2658         * ControlBibtex.h:
2659         * ControlError.h:
2660         * ControlInclude.h:
2661         * ControlMinipage.h:
2662         * ControlRef.h:
2663         * ControlSearch.h:
2664         * ControlUrl.h (clearDaughterParams): removed
2665
2666         * ControlMinipage.C (applyParamsToInset): update the view.
2667         Added namespace minipage containing a helper function getUnits.
2668
2669         * GUI.h: changed Minipage policy to NoRepeatedApplyReadOnlyPolicy.
2670
2671         * ControlCharacter.[Ch]: moved out all the helper functions and the
2672         enum into their own file.
2673         * character.[Ch]: new files; contain the character helper functions,
2674         now inside namespace character.
2675
2676         * ControlCitation.[Ch]: moved out all the helper functions and the
2677         enums into their own file. Simplified interface.
2678         * biblio.[Ch]: new files; contain the citation helper functions,
2679         now inside namespace biblio. Will be of use also to an improved
2680         BibTeX popup.
2681
2682         * ControlGraphics.[Ch]:
2683         * ControlIndex.[Ch]: new files; controllers for the Graphics and Index
2684         popups, respectively.
2685
2686         * GUI.h:
2687         * Makefile.am: associated changes.
2688
2689 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
2690
2691         * ControlMinipage.[Ch]:
2692         * ControlPreamble.[Ch]:
2693         * ControlPrint.[Ch]:
2694         * ControlSplash.[Ch]: new files; controllers for the Minipage, Preamble
2695         and Print popups and Splash screen, respectively.
2696
2697         * ViewBase.h (ViewSplash): new base class for GUI-specific Splash
2698         screens.
2699
2700         * GUI.h:
2701         * Makefile.am: associated changes.
2702
2703 2001-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
2704
2705         * ControlConnections.[Ch]: (docType): new method; returns the type
2706         of the buffer, LaTeX, Literate, LinuxDoc or DocBook.
2707
2708         * ControlRef.[Ch]:
2709         * ControlSearch.[Ch]:
2710         * ControlTabularCreate.[Ch]: new files; controller for the Ref,
2711         Search and TabularCreate popups, respectively.
2712
2713         * GUI.h:
2714         * Makefile.am: associated changes.
2715
2716 2001-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
2717
2718         * ControlCitation.C (getBibkeyInfo): get nasty and assert the info map
2719         contains data.
2720
2721         * ControlInset.h (apply): fix bug. Can now create new insets again.
2722
2723         * README: describe program flow.
2724
2725 2001-03-24  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2726
2727         * Makefile.am (libcontrollers_la_SOURCES): add ControlDialogs.h
2728
2729 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
2730
2731         * ControlDialogs.h: moved class ControlInset into its own file.
2732
2733         * ControlInset.h: new file. class ControlInset has been expanded to take
2734         two template parameters, Inset and Params. Believe that all inset
2735         controllers can be derived from this with the minimum of effort.
2736
2737         * ControlBibitem.[Ch]:
2738         * ControlBibtex.[Ch]:
2739         * ControlCitation.[Ch]:
2740         * ControlCommand.[Ch]: moved most code into ControlInset.
2741
2742         * lots of files. Moved protected stuff into private where possible.
2743
2744         * ControlError.[Ch]:
2745         * ControlInclude.[Ch]:
2746         * ControlUrl.[Ch]: new files; controllers for the LaTeX error,
2747         Include and Url popups, respectively.
2748
2749         * GUI.h:
2750         * Makefile.am: associated changes.
2751
2752 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
2753
2754         * ControlCredits.[Ch] (getCredits): returns a stringstream not a
2755         vector<string>.
2756
2757 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2758
2759         * ControlCredits.C (getCredits): remove std:: qualifier for
2760         getline().
2761
2762 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2763
2764         * ControlCredits.C (getCredits): add std:: on vector
2765
2766 2001-03-22  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2767
2768         * ControlCredits.C: remove using that is only used once, use
2769         std::ios instead of std::iosbase, add some annoying comments.
2770
2771 2001-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
2772
2773         * lots of header files: improved explanatory notes.
2774
2775         * ControlBase.[Ch]: removed LyXView & lv_ and methods using it.
2776         ControlBase is now a class that only controls the interaction of the
2777         View with the ButtonController.
2778
2779         * ControlConnections.[Ch]: added LyXView & lv_ and associated methods
2780         to ControlConnectBase. The class controls the connection/disconnection
2781         of signals from the LyX kernel and makes available the kernel (through
2782         lv_) to daughter controller classes.
2783         Moved out class ControlConnectInset to a new file ControlDialogs.h.
2784
2785         * ControlDialogs.h: new file. Contains the definition of two template
2786         controller classes, ControlDialog and ControlInset (was
2787         ControlConnectInset). ControlInset is a parent class for controllers
2788         of inset-popups. ControlDialogs is the rather uninspired name for
2789         the base class of all non-inset popups. (Eg, Document and Paragraph.)
2790         ControlDialogs is reaching a state of maturity as several popups now use
2791         it and its functionality becomes clear. ControlInset is still in a state
2792         of flux. It is likely that functionality will be moved out of
2793         ControlCommands and into it.
2794
2795         * GUI.h: new file. Moved all the template GUIXXX classes out of the
2796         individual Controller header files and into one place. These classes
2797         serve only as convenient wrappers to simplify code in the respective
2798         frontends' Dialogs::c-tor. Now all derived from a templatised parent.
2799
2800         * ControlCharacter.[Ch] (show, update, hide):
2801         * ControlLog.[Ch] (show, update, hide):
2802         * ControlVCLog.[Ch] (show, update, hide): moved back into
2803         the ControlDialogs base class.
2804         (setParams, clearParams): new methods containing controller-specific
2805         code to set/reset the parameters manipulated by the view.
2806
2807         * ControlCommand.[Ch] (clearParams): a new virtual method, by default
2808         empty.
2809         (hide): calls clearParams.
2810
2811         * ControlCitation.[Ch] (hide): renamed as clearParams, a method called
2812         by ControlCommand::hide().
2813
2814         * ControlCopyright.[Ch]:
2815         * ControlCredits.[Ch]: new files; controllers for the copyright and
2816         credits popups, respectively.
2817
2818 2001-03-21  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2819
2820         * ControlCharacter.C: fix typo
2821
2822 2001-03-21  Angus Leeming  <a.leeming@ic.ac.uk>
2823
2824         * ControlCharacter.[Ch]: new files; controller for the character popup.
2825
2826         * ControlCitation.[Ch] (getStringFromVector, getVectorFromString):
2827         moved to new files helper_funcs.[Ch].
2828
2829         * helper_funcs.[Ch]: new files. Some useful helper functions and
2830         functors.
2831
2832         * Makefile.am: added new files.
2833
2834 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
2835
2836         * ControlCitation.C (getBibkeyInfo): parse non-BibTeX entries correctly.
2837
2838 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
2839
2840         * ControlLog.[Ch]:
2841         * ControlVCLog.[Ch]: new files; controllers for LaTeX and Version
2842         Control log files, respectively.
2843
2844         * Makefile.am: added new files.
2845
2846 2001-03-19  Angus Leeming  <a.leeming@ic.ac.uk>
2847
2848         * ControlBibtex.[Ch]: new files; controller for an InsetBibtex popup.
2849
2850         * Makefile.am: added ControlBibtex.[Ch].
2851
2852 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
2853
2854         * ControlBibitem.C:
2855         * ControlCitation.C: added "using SigC::slot" declaration.
2856
2857         * ControlCitation.C (getStringFromVector): re-apply Dekel's recent fix
2858         to FormCitation.C prior to the merger: "Do not put space between
2859         multiple keys".
2860
2861 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2862
2863         * several files: remove CXX_WORKING_NAMESPACES
2864
2865         * ButtonController.h: noncopyable is in namespace boost
2866         * ButtonPolicies.h: ditto
2867
2868 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
2869
2870         * Merging changes from BRANCH_MVC back into HEAD.
2871
2872 2001-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
2873
2874         * Makefile.am: add ControlBibitem.[Ch].
2875
2876         * ControlBibitem.[Ch]: new files that together define the Controller
2877         for a Bibitem popup.
2878
2879         * ControlCommand.h (c-tor): give  kb_action a default value of
2880         LFUN_NOACTION.
2881
2882         * ControlCommand.C (apply): do nothing if kb_action is LFUN_NOACTION.
2883
2884         * ControlCitation.[Ch]: moved search functions out of class.
2885         (bibkeysInfo): new method. Returns const reference to private data.
2886         (searchKeys): added case-sensitive switch. Used only by simpleSearch
2887         for now.
2888
2889 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
2890
2891         * ControlCitation.[Ch]: added Search functions to the class,
2892         (shamelessly lifted from Marco's gnome code). I think that these would
2893         be better as helper functions outside the class, but this is a first
2894         stab at it.
2895
2896 2001-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
2897
2898         * ControlCitation.[Ch]: (getBibkeyList): removed from class
2899         ControlCitation.
2900         (getBibkeys, getBibkeyInfo): added to class ControlCitation.
2901         (getStringFromVector, getVectorFromString, parseBibTeX): new helper
2902         funcs. parseBibTeX() is lifted staraight out of Marco's gnome
2903         implementation of FormCitation.
2904
2905 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
2906
2907         * ButtonPolicies.h: add SMI_NOOP to enum.
2908
2909         * ButtonPolicies.C (nextState): add if-statement for SMI_NOOP.
2910
2911         * ButtonController.C (input): add "optimising" if-statement. Actually,
2912         things don't work correctly without it...
2913
2914 2001-03-02  John Levon  <moz@compsoc.man.ac.uk>
2915
2916         * ViewBase.h: remove #pragma directive
2917
2918         * ControlConnection.[Ch] (ControlConnectBI c-tor): add explicit c-tor
2919         to make g++ happy.
2920
2921 2001-03-02  Angus Leeming  <a.leeming@ic.ac.uk>
2922
2923         * ButtonPolicies.[Ch]: moved from ../ButtonPolicies.[Ch]
2924
2925         * Makefile.am: added ButtonPolicies.[Ch]
2926
2927         * ButtonController.[Ch]: ButtonController is split into
2928         ButtonControllerBase and a template ButtonController class. The base
2929         class no longer stores a pointer to a ButtonPolicy, but instead
2930         accesses the actual instantiation of the policy through a pure virtual
2931         method bp(). This method and the ButtonPolicy itself are instantiated
2932         in the templatised ButtonController class. This class is derived from
2933         the GUI-specific GUIBC class, meaning that the frontends know
2934         nothing about the actual policy decided upon by the controllers.
2935
2936         * ControlBase.[Ch]: No longer store the View or the ButtonController.
2937         Instead the actual instantiations are accessed through pure virtual
2938         methods view() and bc(). The daughter classes are responsible for the
2939         actual View and ButtonController.
2940
2941         * ControlCitation.h: the templatised class GUICitation instantiates
2942         the methods view() and bc(). It also stores the instances of the
2943         View and ButtonController.
2944
2945 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
2946
2947         * ButtonControllerBase.[Ch]: renamed as ButtonController.[Ch]. Class
2948         also changed to ButtonController.
2949
2950         * ControlBase.[Ch]:
2951         * ControlConnections.[Ch]:
2952         * ControlCommand.[Ch]:
2953         * ControlCitation.[Ch]:
2954         * ViewBase.h: Changes associated with this.
2955
2956 2001-01-15  Angus Leeming  <a.leeming@ic.ac.uk>
2957
2958         * ButtonControllerBase.[Ch]: new files. Split Allan's original
2959         xforms/ButtonController class into a GUI-I class (here) and an
2960         xforms-specific derived class, to be found in xforms/xformsBC.[Ch].
2961
2962         * ControlBase.[Ch]: new files. ControlBase is an abstract base class
2963         from which all Dialog Controllers should be derived. the Controllers
2964         are GUI-independent, but are designed to control the behaviour of
2965         GUI-specific implementaions of each dialog.
2966
2967         * ControlConnections.[Ch]: new files. Classes controlling the
2968         connections of buffer-independent, buffer-dependent and Inset dialogs
2969         with the LyX kernel.
2970
2971         * ControlCommand.[Ch]: new files. A controller for all dialogs for the
2972         InsetCommand subset of insets.
2973
2974         * ControlCitation.[Ch]: new files. The test specialisation! A
2975         controller for the Citation dialog.
2976
2977         * ViewBase.h: new file. ViewBase is an abstract base class from which
2978         GUI-specific dialogs should be derived. The functionality that the GUIs
2979         must now implement is much reduced.