diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 90825e2392b2d70e43c7a25b8a3752299a933894 (patch) | |
tree | e33aa27f02b74604afbfd0ea4f1cfca8833d882a /kjsembed/slotproxy.h | |
download | tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kjsembed/slotproxy.h')
-rw-r--r-- | kjsembed/slotproxy.h | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/kjsembed/slotproxy.h b/kjsembed/slotproxy.h new file mode 100644 index 00000000..3df42215 --- /dev/null +++ b/kjsembed/slotproxy.h @@ -0,0 +1,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 <qobject.h> + +#ifndef QT_ONLY +#include <kurl.h> +#else +#include <kjsembed/qtstubs.h> +#endif // QT_ONLY + +class QDate; +class QTime; +class QDateTime; + +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 QObject +{ + Q_OBJECT + +public: + JSSlotProxy( QObject *parent, const char *name=0 ); + JSSlotProxy( QObject *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 QString &method ) { this->method = method; } + +public slots: + void slot_void(); + void slot_bool( bool b ); + void slot_string( const QString &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 QFont &font ); + void slot_color( const QColor &color ); + void slot_point( const QPoint &point ); + void slot_rect( const QRect &rec ); + void slot_size( const QSize &size ); + void slot_pixmap( const QPixmap &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 QDate& date); + void slot_time(const QTime& time); + void slot_datetime( const QDateTime &dateTime ); + void slot_datedate( const QDate &date1, const QDate &date2 ); + void slot_colorstring( const QColor &color, const QString &string); + void slot_image( const QImage &image ); + + void slot_variant( const QVariant &variant ); + + void slot_widget( QWidget *widget ); + +private: + void execute( const KJS::List &args ); + JSObjectProxy *proxy; + KJS::Interpreter *js; + KJS::Object obj; + QString method; + class SlotProxyPrivate *d; +}; + +} // namespace KJSEmbed + +#endif // KJSEMBED_SLOTPROXY_H + |