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