src/Core/Editors/OLCEditor.h

00001 /***************************************************************************
00002  *   Copyright (C) 2008 by Sverre Rabbelier                                *
00003  *   sverre@rabbelier.nl                                                   *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU General Public License as published by  *
00007  *   the Free Software Foundation; either version 3 of the License, or     *
00008  *   (at your option) any later version.                                   *
00009  *                                                                         *
00010  *   This program is distributed in the hope that it will be useful,       *
00011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00013  *   GNU General Public License for more details.                          *
00014  *                                                                         *
00015  *   You should have received a copy of the GNU General Public License     *
00016  *   along with this program; if not, write to the                         *
00017  *   Free Software Foundation, Inc.,                                       *
00018  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
00019  ***************************************************************************/
00020 #pragma once
00021 
00022 #include "SavableHeaders.h"
00023 
00024 #include "Global.h"
00025 #include "Editor.h"
00026 #include "CommandObject.h"
00027 #include "CommandTable.h"
00028 
00029 class OLCEditor : public Editor
00030 {
00031 public:
00032         typedef CommandObject<OLCEditor> SavableCommand; 
00034         OLCEditor(UBSocket* sock);
00035         virtual ~OLCEditor(void);
00036         
00037         virtual std::string lookup(const std::string& action);
00038         virtual void dispatch(const std::string& action, const std::string& argument);
00039         
00040         virtual SavablePtr getEditing() = 0;
00041         virtual TableImplPtr getTable() = 0;
00042         virtual KeysPtr addNew() = 0;
00043 
00044         virtual std::vector<std::string> getList() = 0;
00045         virtual std::vector<std::string> getCommands() = 0;
00046         
00047         virtual void setEditing(KeysPtr keys) = 0;
00048         
00049         void listCommands(const std::string& argument);
00050         void newSavable(const std::string& argument);
00051         void deleteSavable(const std::string& argument);
00052         void editSavable(const std::string& argument);
00053         void quitEditor(const std::string& argument);
00054         void doneEditing(const std::string& argument);
00055         void discardChanges(const std::string& argument);
00056         void listSavable(const std::string& argument);
00057         
00058 private:
00059         CommandTable<OLCEditor> m_olccommands;
00060 
00061         OLCEditor(const OLCEditor& rhs);
00062 };

Generated for UnsignedByte by  doxygen 1.5.3
SourceForge.net Logo