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