annotate 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 |
|
rev |
line source |
10
|
1 // Filename : cache.h
|
23
|
2 // Last Change: 01-Nov-2011.
|
10
|
3 //
|
|
4 #ifndef __cache__
|
|
5 #define __cache__
|
|
6
|
|
7 class CacheItem
|
|
8 {
|
|
9 public:
|
|
10 wxString filename; // key
|
12
|
11 wxString fullpath;
|
11
|
12 wxString modtime;
|
|
13 float z;
|
|
14 long l;
|
|
15 bool marksheet;
|
10
|
16 wxBitmap thumbnail;
|
23
|
17 wxBitmap selthumbnail;
|
11
|
18 bool exists;
|
10
|
19 };
|
|
20
|
|
21 #endif // __cache__
|
|
22
|