diff options
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* - * $Id: setup.c,v 1.3 2004/06/12 21:16:18 lordjaxom Exp $ + * $Id: setup.c,v 1.4 2004/06/18 16:08:11 lordjaxom Exp $ */ #include "setup.h" @@ -23,6 +23,7 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) { cText2SkinSetupPage::cText2SkinSetupPage(void) { mData = Text2SkinSetup; + Add(new cOsdItem(tr("Flush image cache"), osUser1)); Add(new cMenuEditIntItem(tr("Max. image cache size"), &mData.MaxCacheFill)); } @@ -34,3 +35,14 @@ void cText2SkinSetupPage::Store(void) { Text2SkinSetup = mData; } +eOSState cText2SkinSetupPage::ProcessKey(eKeys Key) { + eOSState state = cMenuSetupPage::ProcessKey(Key); + if (state == osUser1) { + Skins.Message(mtInfo, tr("Flushing image cache...")); + cText2SkinBitmap::FlushCache(); + Skins.Message(mtInfo, NULL); + return osContinue; + } + return state; +} + |