~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to lib/kross/api/eventscript.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-04-20 21:38:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060420213853-j5lxluqvymxt2zny
Tags: 1:1.5.0-0ubuntu2
UbuntuĀ uploadĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 * eventscript.cpp
 
3
 * This file is part of the KDE project
 
4
 * copyright (C)2004-2005 by Sebastian Sauer (mail@dipe.org)
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Library General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Library General Public License for more details.
 
14
 * You should have received a copy of the GNU Library General Public License
 
15
 * along with this program; see the file COPYING.  If not, write to
 
16
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA 02110-1301, USA.
 
18
 ***************************************************************************/
 
19
 
 
20
#include "eventscript.h"
 
21
//#include "object.h"
 
22
//#include "variant.h"
 
23
//#include "../main/scriptcontainer.h"
 
24
 
 
25
using namespace Kross::Api;
 
26
 
 
27
EventScript::EventScript(const QString& name, Object::Ptr parent)
 
28
    : Event<EventScript>(name, parent)
 
29
{
 
30
}
 
31
 
 
32
EventScript::~EventScript()
 
33
{
 
34
}
 
35
 
 
36
const QString EventScript::getClassName() const
 
37
{
 
38
    return "Kross::Api::EventScript";
 
39
}
 
40
 
 
41
Object::Ptr EventScript::call(const QString& name, KSharedPtr<List> arguments)
 
42
{
 
43
    kdDebug() << QString("EventScript::call() name=%1 arguments=%2").arg(name).arg(arguments->toString()) << endl;
 
44
    //TODO
 
45
    return 0;
 
46
}
 
47