summaryrefslogtreecommitdiff
path: root/src/SeparatorItemSetup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/SeparatorItemSetup.cpp')
-rw-r--r--src/SeparatorItemSetup.cpp62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/SeparatorItemSetup.cpp b/src/SeparatorItemSetup.cpp
deleted file mode 100644
index 87d1732..0000000
--- a/src/SeparatorItemSetup.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * vdr-menuorg - A plugin for the Linux Video Disk Recorder
- * Copyright (C) 2007 Thomas Creutz, Tobias Grimm
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
- *
- */
-
-#include "SeparatorItemSetup.h"
-
-SeparatorItemSetup::SeparatorItemSetup(SeparatorMenuNode* node)
-:cOsdMenu(tr("Edit Separator Menu Item"), 10)
-{
- strn0cpy(_newTitle, node->CustomTitle().c_str(), sizeof(_newTitle));
- _node = node;
- CreateMenuItems();
-}
-
-SeparatorItemSetup::~SeparatorItemSetup()
-{
- // TODO: write back the changes
-}
-
-void SeparatorItemSetup::CreateMenuItems()
-{
- // Add textItem for title attribute
- Add(new cMenuEditStrItem(tr("title"), _newTitle, sizeof(_newTitle), NULL));
-}
-
-void SeparatorItemSetup::Store()
-{
- _node->CustomTitle(_newTitle);
-}
-
-eOSState SeparatorItemSetup::ProcessKey(eKeys Key)
-{
- eOSState state = cOsdMenu::ProcessKey(Key);
-
- if(state == osUnknown)
- {
- if(Key == kOk)
- {
- Store();
- state = osBack;
- }
- }
- return state;
-}