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