aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/ImageControl.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-11 15:59:49 (GMT)
committerfluxgen <fluxgen>2003-08-11 15:59:49 (GMT)
commit2e4b09e37c320ec83857d60d3ee64eb90ca2f53e (patch)
tree471b509e471feb856c06e8cdf9886e6528a30b92 /src/FbTk/ImageControl.cc
parentaf9349661477a4bf15c48df94f498f3955cc7c09 (diff)
downloadfluxbox-2e4b09e37c320ec83857d60d3ee64eb90ca2f53e.zip
fluxbox-2e4b09e37c320ec83857d60d3ee64eb90ca2f53e.tar.bz2
using new timer command
Diffstat (limited to 'src/FbTk/ImageControl.cc')
-rw-r--r--src/FbTk/ImageControl.cc15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/FbTk/ImageControl.cc b/src/FbTk/ImageControl.cc
index f372d8e..4c08799 100644
--- a/src/FbTk/ImageControl.cc
+++ b/src/FbTk/ImageControl.cc
@@ -22,12 +22,13 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: ImageControl.cc,v 1.2 2003/07/12 21:50:15 fluxgen Exp $ 25// $Id: ImageControl.cc,v 1.3 2003/08/11 15:59:49 fluxgen Exp $
26 26
27#include "ImageControl.hh" 27#include "ImageControl.hh"
28 28
29#include "TextureRender.hh" 29#include "TextureRender.hh"
30#include "App.hh" 30#include "App.hh"
31#include "SimpleCommand.hh"
31 32
32//use GNU extensions 33//use GNU extensions
33#ifndef _GNU_SOURCE 34#ifndef _GNU_SOURCE
@@ -82,7 +83,6 @@ unsigned long bsqrt(unsigned long x) {
82ImageControl::ImageControl(int screen_num, bool dither, 83ImageControl::ImageControl(int screen_num, bool dither,
83 int cpc, unsigned long cache_timeout, unsigned long cmax): 84 int cpc, unsigned long cache_timeout, unsigned long cmax):
84 m_dither(dither), 85 m_dither(dither),
85 m_timer(this),
86 m_colors(0), 86 m_colors(0),
87 m_num_colors(0), 87 m_num_colors(0),
88 m_colors_per_channel(cpc) { 88 m_colors_per_channel(cpc) {
@@ -99,6 +99,8 @@ ImageControl::ImageControl(int screen_num, bool dither,
99#ifdef TIMEDCACHE 99#ifdef TIMEDCACHE
100 if (cache_timeout) { 100 if (cache_timeout) {
101 m_timer.setTimeout(cache_timeout); 101 m_timer.setTimeout(cache_timeout);
102 RefCount<Command> clean_cache(new SimpleCommand<ImageControl>(*this, &ImageControl::cleanCache));
103 m_timer.setCommand(clean_cache);
102 m_timer.start(); 104 m_timer.start();
103 } 105 }
104#endif // TIMEDCACHE 106#endif // TIMEDCACHE
@@ -212,7 +214,7 @@ Pixmap ImageControl::renderImage(unsigned int width, unsigned int height,
212#ifdef DEBUG 214#ifdef DEBUG
213 cerr<<"FbTk::ImageControl::renderImage(): cache is large, forcing cleanout"<<endl; 215 cerr<<"FbTk::ImageControl::renderImage(): cache is large, forcing cleanout"<<endl;
214#endif // DEBUG 216#endif // DEBUG
215 timeout(); 217 cleanCache();
216 } 218 }
217 219
218 return pixmap; 220 return pixmap;
@@ -234,9 +236,10 @@ void ImageControl::removeImage(Pixmap pixmap) {
234 (*it)->count--; 236 (*it)->count--;
235 237
236#ifdef TIMEDCACHE 238#ifdef TIMEDCACHE
237 timeout(); 239 cleanCache();
238#else // !TIMEDCACHE 240#else // !TIMEDCACHE
239 if (! (*it)->count) timeout(); 241 if (! (*it)->count)
242 cleanCache()
240#endif // TIMEDCACHE 243#endif // TIMEDCACHE
241 } 244 }
242 245
@@ -349,7 +352,7 @@ unsigned long ImageControl::getSqrt(unsigned int x) const {
349 return (*(sqrt_table + x)); 352 return (*(sqrt_table + x));
350} 353}
351 354
352void ImageControl::timeout() { 355void ImageControl::cleanCache() {
353 Display *disp = FbTk::App::instance()->display(); 356 Display *disp = FbTk::App::instance()->display();
354 CacheList::iterator it = cache.begin(); 357 CacheList::iterator it = cache.begin();
355 CacheList::iterator it_end = cache.end(); 358 CacheList::iterator it_end = cache.end();