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