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