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