]> git.lyx.org Git - lyx.git/blob - src/graphics/ChangeLog
Some more fixes to compiler warnings.
[lyx.git] / src / graphics / ChangeLog
1 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
2
3         * GraphicsParams.[Ch]:
4         * GraphicsImage.C:
5         * GraphicsImageXPM.C: properly resolve more warnings about comparison
6         between signed and unsigned integer expressions.
7
8 2002-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
9
10         * GraphicsCache.C: improve commentary to graphicsInit and where it
11         should really go.
12
13         * GraphicsImageXPM.C (~Data, free_color_table): resolve the crash
14         that became a memory leak properly. (Let the shared_c_ptr free the
15         color table.)
16         (reset, mapcolor): tidy up and introduce a work around for XPM files
17         with crappy color entries. Print out a nice friendly message on what's
18         gone wrong and how to resolve it properly.
19
20 2002-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
21
22         * GraphicsImageXPM.[Ch]: more rigorous use of types (signed/unsigned).
23         (Data d-tor): introduce memory leak temporarily, to "fix" a crash
24         in free_color_table.
25         (unique_color_string): use the correct string c-tor.
26
27 2002-02-15  Angus Leeming  <a.leeming@ic.ac.uk>
28
29         * ImageLoader.[Ch]:
30         * ImageLoaderXPM.[Ch]: removed.
31
32         * GraphicsConverter.[Ch]:
33         * GraphicsImage.[Ch]:
34         * GraphicsImageXPM.[Ch]:
35         * GraphicsParams.[Ch]:
36         * GraphicsTypes.h: new files.
37
38         * All files. A total re-write of the graphics cache. The cache now
39         supports asynchronous file conversion and file loading. Images
40         can be cropped, rotated and scaled for display on the LyX screen.
41         The old LyXImage and ImageLoader have been combined in a new class
42         GImage. Ditto, ImageLoaderXPM's functionality has been moved into
43         GImageXPM.
44
45 2002-02-07  Herbert Voss  <voss@lyx.org>
46
47         * GraphicsCacheItem.C: use unzipFile() from support/filetools
48
49 2002-01-31  Herbert Voss  <voss@lyx.org>
50
51         * GraphicsCacheItem.h: handle filetype without the file extension;
52         getting type from contents; handle zipped files
53
54 2002-01-27  Herbert Voss  <voss@lyx.org>
55
56         * GraphicsCacheItem.h: added Converting to the ImageStatus enum.
57
58 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
59
60         * ImageLoaderXPM.C: don't set XpmColorKey flag if we don't use it
61  
62 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
63
64         * GraphicsCacheItem.h: do not include <config.h> in header files
65
66 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
67
68         * ImageLoaderXPM.C (runImageLoader): If the pixmap contains a
69         transparent colour, then set it to the colour of the background.
70         Also take account of the monochrome, grayscale of color
71         preferences option.
72
73 2001-09-20  Angus Leeming  <a.leeming@ic.ac.uk>
74
75         * GraphicsCacheItem.C (convertImage): only convert if "from" and "to"
76         are different. Thus, don't delete the "to" if it's the original!
77
78 2001-09-01  John Levon  <moz@compsoc.man.ac.uk>
79
80         * ImageLoadXPM.C: remove setting of alloc colour mask,
81           led to crash as we don't define a callback
82
83 2001-07-29  Baruch Even  <baruch@lyx.org>
84
85         * ImageLoaderXPM.C (runImageLoader): When loading agree to use non-exact
86         colors with closeness of 10000.
87
88         * GraphicsCacheItem.C: Fixed a compilation bug introduced earlier.
89
90 2001-07-29  Baruch Even  <baruch@lyx.org>
91
92         * GraphicsCacheItem.C (findTargetFormat): Removed error dialog box,
93         too annoying.
94
95 2001-07-23  Baruch Even  <baruch@lyx.org>
96
97         * GraphicsCacheItem.C (convertImage): Fixed a bug with regard to loading
98         the image after conversion.
99
100 2001-07-17  Baruch Even  <baruch@lyx.org>
101
102         * GraphicsCacheItem.h:
103         * GraphicsCacheItem.C: Shuffled things a bit to make it easier to switch
104         from synchronous to asynchronous and to ease the coming changes.
105
106 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
107
108         * ImageLoaderXPM.C (runImageLoader): get display information from
109         GUIRunTime. 
110
111 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
112
113         * GraphicsCache.C:
114         * GraphicsCacheItem.C:
115         * ImageLoader.C:
116         * ImageLoaderXPM.C: removed // -*- C++ -*- as first line.
117
118 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
119
120         * GraphicsCache.h: inherit privately from noncopyable
121         * ImageLoader.h: ditto
122         * GraphicsCacheItem.h: ditto
123
124 2001-04-16  Allan Rae  <rae@lyx.org>
125
126         * ImageLoaderXPM.C (runImageLoader): #warning triggers an error on Sun
127         CC 6.0 as an unrecognised preprocessor directive.  So ensure they're 
128         wrapped. 
129
130 2001-04-02  Baruch Even  <baruch@lyx.org>
131
132         * GraphicsCacheItem.[Ch]: Changed to used the Converter class instead
133         of hard coding ImageMagick.
134
135 2001-03-10  Baruch Even  <baruch@lyx.org>
136
137         * GraphicsCache.C: Style change from (*it).field to it->field
138
139 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
140
141         * GraphicsCache.h: noncopyable is in namespace boost
142         * ImageLoader.h: ditto
143         * GraphicsCacheItem.h: ditto
144
145 2001-03-07  Baruch Even  <baruch@lyx.org>
146
147         * GraphicsCache.C (d-tor): Removed the assert, the assumption it carried
148         was false and it's not needed anyhow since the shared_ptr's in the cache
149         will destroy everything on exit.
150
151 2001-02-28  Baruch Even  <baruch@ev-en.org>
152
153         * GraphicsCache.h:
154         * GraphicsCache.C: Changed the singleton pattern implementation, the
155         former version "leaked" in the sense that it was not deallocated at
156         program end.
157
158 2001-02-20  Baruch Even  <baruch@ev-en.org>
159
160         * GraphicsCache.C: Changed to use shared_ptr<GraphicsCacheItem>
161         instead of a pure pointer.
162
163         * GraphicsCacheItem.[Ch]:
164         * GraphicsCacheItem_pimpl.[Ch]: Collapsed them into GraphicsCacheItem,
165         removed the reference counting that was inside. Also fixed a bug where
166         a temporary file wouldn't get erased.
167
168         * ImageLoader.[Ch]: Changed the semantics of the image_ pointers usage.
169         Ownership is now dropped when the caller requests the image_ pointer.
170
171 2001-02-20  Baruch Even  <baruch@ev-en.org>
172
173         * GraphicsCache.C: Cleared up the confusion on when and how it is
174         emptied.
175
176         * GraphicsCacheItem.C: Indentation change.
177
178         * GraphicsCacheItem_pimpl.C: Fixed the loading logic so that it will
179         figure correctly when the image has been loaded successfully.
180
181 2001-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
182
183         * ImageLoader.C: add a "using" directive.
184
185         * ImageLoader.h: remove extra comma at the end of enum; add an
186         std:: qualifier for vector.
187
188 2001-01-21  Baruch Even  <baruch@ev-en.org>
189
190         * GraphicsCacheItem.[Ch]: Changes due to the storage of width and
191         height in the image itself and minor cleanups.
192
193         * GraphicsCacheItem_impl.[Ch]: Changes due to the switch to use a
194         new ImageLoader class instead of the older Renderer class. This
195         means change of responsibilities.