]> git.lyx.org Git - lyx.git/blob - src/graphics/ChangeLog
remove more forms.h cruft
[lyx.git] / src / graphics / ChangeLog
1 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * ImageLoaderXPM.C (runImageLoader): get display information from
4         GUIRunTime. 
5
6 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
7
8         * GraphicsCache.C:
9         * GraphicsCacheItem.C:
10         * ImageLoader.C:
11         * ImageLoaderXPM.C: removed // -*- C++ -*- as first line.
12
13 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14
15         * GraphicsCache.h: inherit privately from noncopyable
16         * ImageLoader.h: ditto
17         * GraphicsCacheItem.h: ditto
18
19 2001-04-16  Allan Rae  <rae@lyx.org>
20
21         * ImageLoaderXPM.C (runImageLoader): #warning triggers an error on Sun
22         CC 6.0 as an unrecognised preprocessor directive.  So ensure they're 
23         wrapped. 
24
25 2001-04-02  Baruch Even  <baruch@lyx.org>
26
27         * GraphicsCacheItem.[Ch]: Changed to used the Converter class instead
28         of hard coding ImageMagick.
29
30 2001-03-10  Baruch Even  <baruch@lyx.org>
31
32         * GraphicsCache.C: Style change from (*it).field to it->field
33
34 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
35
36         * GraphicsCache.h: noncopyable is in namespace boost
37         * ImageLoader.h: ditto
38         * GraphicsCacheItem.h: ditto
39
40 2001-03-07  Baruch Even  <baruch@lyx.org>
41
42         * GraphicsCache.C (d-tor): Removed the assert, the assumption it carried
43         was false and it's not needed anyhow since the shared_ptr's in the cache
44         will destroy everything on exit.
45
46 2001-02-28  Baruch Even  <baruch@ev-en.org>
47
48         * GraphicsCache.h:
49         * GraphicsCache.C: Changed the singleton pattern implementation, the
50         former version "leaked" in the sense that it was not deallocated at
51         program end.
52
53 2001-02-20  Baruch Even  <baruch@ev-en.org>
54
55         * GraphicsCache.C: Changed to use shared_ptr<GraphicsCacheItem>
56         instead of a pure pointer.
57
58         * GraphicsCacheItem.[Ch]:
59         * GraphicsCacheItem_pimpl.[Ch]: Collapsed them into GraphicsCacheItem,
60         removed the reference counting that was inside. Also fixed a bug where
61         a temporary file wouldn't get erased.
62
63         * ImageLoader.[Ch]: Changed the semantics of the image_ pointers usage.
64         Ownership is now dropped when the caller requests the image_ pointer.
65
66 2001-02-20  Baruch Even  <baruch@ev-en.org>
67
68         * GraphicsCache.C: Cleared up the confusion on when and how it is
69         emptied.
70
71         * GraphicsCacheItem.C: Indentation change.
72
73         * GraphicsCacheItem_pimpl.C: Fixed the loading logic so that it will
74         figure correctly when the image has been loaded successfully.
75
76 2001-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
77
78         * ImageLoader.C: add a "using" directive.
79
80         * ImageLoader.h: remove extra comma at the end of enum; add an
81         std:: qualifier for vector.
82
83 2001-01-21  Baruch Even  <baruch@ev-en.org>
84
85         * GraphicsCacheItem.[Ch]: Changes due to the storage of width and
86         height in the image itself and minor cleanups.
87
88         * GraphicsCacheItem_impl.[Ch]: Changes due to the switch to use a
89         new ImageLoader class instead of the older Renderer class. This
90         means change of responsibilities.