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