comparison include/cache.h @ 23:a2dd16b70c08 v2.2dev

apply vivid-coloured image for selected item.
author pyon@macmini
date Tue, 01 Nov 2011 22:26:41 +0900
parents 6ed3b64ed39a
children
comparison
equal deleted inserted replaced
22:4432aba77d6b 23:a2dd16b70c08
1 // Filename : cache.h 1 // Filename : cache.h
2 // Last Change: 23-Oct-2011. 2 // Last Change: 01-Nov-2011.
3 // 3 //
4 #ifndef __cache__ 4 #ifndef __cache__
5 #define __cache__ 5 #define __cache__
6 6
7 class CacheItem 7 class CacheItem
12 wxString modtime; 12 wxString modtime;
13 float z; 13 float z;
14 long l; 14 long l;
15 bool marksheet; 15 bool marksheet;
16 wxBitmap thumbnail; 16 wxBitmap thumbnail;
17 wxBitmap selthumbnail;
17 bool exists; 18 bool exists;
18 }; 19 };
19 20
20 #endif // __cache__ 21 #endif // __cache__
21 22