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