1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/***************************************************************************
* eventslot.h
* This file is part of the KDE project
* copyright (C)2004-2005 by Sebastian Sauer (mail@dipe.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
* You should have received a copy of the GNU Library General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
***************************************************************************/
#ifndef KROSS_API_EVENTSLOT_H
#define KROSS_API_EVENTSLOT_H
#include <qstring.h>
#include <qobject.h>
#include <ksharedptr.h>
#include "event.h"
namespace Kross { namespace Api {
/**
* Each Qt signal and slot connection between a QObject
* instance and a functionname is represented with
* a EventSlot and handled by the \a EventManager.
*/
class EventSlot : public Event<EventSlot>
{
public:
/**
* Shared pointer to implement reference-counting.
*/
typedef KSharedPtr<EventSlot> Ptr;
/**
* Constructor.
*
* \param name The name of the EventSlot. The EventSlot
* will be accessible by that unique name via
* it's parent.
* \param receiver The receiver of the event.
* \param slot The slot of the receiver which this
* EventSlot points to.
*/
EventSlot(const QString& name, QObject* receiver, QCString slot);
/**
* Destructor.
*/
virtual ~EventSlot();
/// \see Kross::Api::Object::getClassName()
virtual const QString getClassName() const;
/// \see Kross::Api::Event::call()
virtual Object::Ptr call(const QString& name, KSharedPtr<List> arguments);
/*
private:
EventManager* m_eventmanager;
QGuardedPtr<QObject> m_sender;
QCString m_signal;
QCString m_slot;
QString m_function;
QValueList<EventSlot*> m_slots;
protected:
void call(const QVariant&);
public slots:
// Stupid signals and slots. To get the passed
// arguments we need to have all cases of slots
// avaiable for EventManager::connect() signals.
void callback();
void callback(short);
void callback(int);
void callback(int, int);
void callback(int, int, int);
void callback(int, int, int, int);
void callback(int, int, int, int, int);
void callback(int, int, int, int, bool);
void callback(int, bool);
void callback(int, int, bool);
void callback(int, int, const QString&);
void callback(uint);
void callback(long);
void callback(ulong);
void callback(double);
void callback(const char*);
void callback(bool);
void callback(const QString&);
void callback(const QString&, int);
void callback(const QString&, int, int);
void callback(const QString&, uint);
void callback(const QString&, bool);
void callback(const QString&, bool, bool);
void callback(const QString&, bool, int);
void callback(const QString&, const QString&);
void callback(const QString&, const QString&, const QString&);
void callback(const QStringList&);
void callback(const QVariant&);
// The following both slots are more generic to
// handle Kross::Api::Object instances.
//void callback(Kross::Api::Object*);
//void callback(Kross::Api::List*);
*/
private:
QObject* m_receiver;
QCString m_slot;
};
}}
#endif
|