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