summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-08 18:48:39 +0000
committerlordjaxom <lordjaxom>2004-12-08 18:48:39 +0000
commit5382d18d05d358bb1c313c642395e835aa44a6a0 (patch)
tree2b5ef58620b3640c5b21e8eafe92ee4b266b1d30 /setup.c
parenteb2f2c9600e8f69788232582191b141002bcd522 (diff)
downloadvdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.gz
vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.bz2
1.0-pre1v1.0-pre1
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c30
1 files changed, 1 insertions, 29 deletions
diff --git a/setup.c b/setup.c
index 3a96131..7a8a9e8 100644
--- a/setup.c
+++ b/setup.c
@@ -1,9 +1,8 @@
/*
- * $Id: setup.c,v 1.4 2004/06/18 16:08:11 lordjaxom Exp $
+ * $Id: setup.c,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $
*/
#include "setup.h"
-#include "bitmap.h"
cText2SkinSetup Text2SkinSetup;
@@ -19,30 +18,3 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
return true;
}
-// --- cText2SkinSetupPage ----------------------------------------------------
-
-cText2SkinSetupPage::cText2SkinSetupPage(void) {
- mData = Text2SkinSetup;
- Add(new cOsdItem(tr("Flush image cache"), osUser1));
- Add(new cMenuEditIntItem(tr("Max. image cache size"), &mData.MaxCacheFill));
-}
-
-cText2SkinSetupPage::~cText2SkinSetupPage() {
-}
-
-void cText2SkinSetupPage::Store(void) {
- SetupStore("MaxCacheFill", mData.MaxCacheFill);
- 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;
-}
-