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