lib

callable.h

00001 /***************************************************************************
00002  * callable.h
00003  * This file is part of the KDE project
00004  * copyright (C)2004-2005 by Sebastian Sauer (mail@dipe.org)
00005  *
00006  * This program is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Library General Public
00008  * License as published by the Free Software Foundation; either
00009  * version 2 of the License, or (at your option) any later version.
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 GNU
00013  * Library General Public License for more details.
00014  * You should have received a copy of the GNU Library General Public License
00015  * along with this program; see the file COPYING.  If not, write to
00016  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017  * Boston, MA 02110-1301, USA.
00018  ***************************************************************************/
00019 
00020 #ifndef KROSS_API_CALLABLE_H
00021 #define KROSS_API_CALLABLE_H
00022 
00023 #include "object.h"
00024 #include "list.h"
00025 //#include "exception.h"
00026 
00027 #include <qstring.h>
00028 #include <qvaluelist.h>
00029 #include <ksharedptr.h>
00030 
00031 namespace Kross { namespace Api {
00032 
00039     class Callable : public Object
00040     {
00041         public:
00042 
00046             typedef KSharedPtr<Callable> Ptr;
00047 
00054             Callable(const QString& name);
00055 
00059             virtual ~Callable();
00060 
00066             const QString getName() const;
00067 
00075             virtual const QString getClassName() const;
00076 
00082             bool hasChild(const QString& name) const;
00083 
00092             Object::Ptr getChild(const QString& name) const;
00093 
00099             QMap<QString, Object::Ptr> getChildren() const;
00100 
00110             bool addChild(const QString& name, Object* object);
00111 
00116             bool addChild(Callable* object);
00117 
00125             void removeChild(const QString& name);
00126 
00130             void removeAllChildren();
00131 
00135             virtual Object::Ptr call(const QString& name, List::Ptr arguments);
00136 
00137         private:
00139             QString m_name;
00141             QMap<QString, Object::Ptr> m_children;
00142     };
00143 
00144 }}
00145 
00146 #endif
00147 
KDE Home | KDE Accessibility Home | Description of Access Keys