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