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