summaryrefslogtreecommitdiffstats
path: root/kjsembed/slotproxy.h
blob: 18f4a2721ece84894f95e3a136d64986af61a88a (plain)
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
// -*- c++ -*-

/*
 *  Copyright (C) 2003-2004, Richard J. Moore <rich@kde.org>
 *
 *  This library 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 library 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 library; see the file COPYING.LIB.  If not, write to
 *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301, USA.
 */

#ifndef KJSEMBED_SLOTPROXY_H
#define KJSEMBED_SLOTPROXY_H
#include <kjsembed/global.h>

#include <kjs/object.h>
#include <tqobject.h>

#ifndef QT_ONLY
#include <kurl.h>
#else
#include <kjsembed/qtstubs.h>
#endif // QT_ONLY

class TQDate;
class TQTime;
class TQDateTime;

namespace KJS {
class Interpreter;
}

namespace KJSEmbed {

class JSObjectProxy;

/**
 * Allows slots to be connected to methods of a JS object.
 *
 * @author Richard Moore, rich@kde.org
 */
class KJSEMBED_EXPORT JSSlotProxy : public TQObject
{
    Q_OBJECT

public:
    JSSlotProxy( TQObject *parent, const char *name=0 );
    JSSlotProxy( TQObject *parent, const char *name, JSObjectProxy *prx );

    virtual ~JSSlotProxy();

    void setInterpreter( KJS::Interpreter *js ) { this->js = js; }
    void setProxy( JSObjectProxy *proxy ) { this->proxy = proxy; }
    void setObject( const KJS::Object &obj ) { this->obj = obj; }
    void setMethod( const TQString &method ) { this->method = method; }

public slots:
    void slot_void();
    void slot_bool( bool b );
    void slot_string( const TQString &s );
    void slot_int( int i );
    void slot_uint( uint i );
    void slot_long( long i );
    void slot_ulong( ulong i );
    void slot_double( double d );
    void slot_font( const TQFont &font );
    void slot_color( const TQColor &color );
    void slot_point( const TQPoint &point );
    void slot_rect( const TQRect &rec );
    void slot_size( const TQSize &size );
    void slot_pixmap( const TQPixmap &pix );
    void slot_url( const KURL &url );
    void slot_intint( int , int );
    void slot_intbool( int , bool );
    void slot_intintint( int , int , int );

    void slot_date(const TQDate& date);
    void slot_time(const TQTime& time);
    void slot_datetime( const TQDateTime &dateTime );
    void slot_datedate( const TQDate &date1, const TQDate &date2 );
    void slot_colorstring( const TQColor &color, const TQString &string);
    void slot_image( const TQImage &image );

    void slot_variant( const TQVariant &variant );
    
    void slot_widget( TQWidget *widget );

private:
    void execute( const KJS::List &args );
    JSObjectProxy *proxy;
    KJS::Interpreter *js;
    KJS::Object obj;
    TQString method;
    class SlotProxyPrivate *d;
};

} // namespace KJSEmbed

#endif // KJSEMBED_SLOTPROXY_H