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