You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
// -*- c++ -*-
|
|
|
|
/*
|
|
* Copyright (C) 2003, 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_CUSTOMTQOBJECT_PLUGIN_H
|
|
#define KJSEMBED_CUSTOMTQOBJECT_PLUGIN_H
|
|
|
|
#include <kjsembed/jsbindingplugin.h>
|
|
#include <kjsembed/jsproxy_imp.h>
|
|
#include <tqobject.h>
|
|
|
|
namespace KJSEmbed {
|
|
namespace Bindings {
|
|
|
|
class MyCustomTQObjectLoader : public JSBindingPlugin
|
|
{
|
|
public:
|
|
MyCustomTQObjectLoader( TQObject *parent, const char *name, const TQStringList &args );
|
|
virtual ~MyCustomTQObjectLoader(){;}
|
|
KJS::Object createBinding(KJSEmbedPart *jspart, KJS::ExecState *exec, const KJS::List &args) const;
|
|
};
|
|
|
|
|
|
class MyCustomTQObjectImp : public TQObject {
|
|
|
|
Q_OBJECT
|
|
|
|
/** Identifiers for the methods provided by this class. */
|
|
enum Mode { On, Off };
|
|
TQ_PROPERTY(Mode mode READ mode WRITE setMode)
|
|
TQ_PROPERTY(TQString thing READ thing WRITE setThing)
|
|
TQ_ENUMS(Mode)
|
|
public:
|
|
MyCustomTQObjectImp( TQObject *parent, const char *name);
|
|
virtual ~MyCustomTQObjectImp();
|
|
|
|
public slots:
|
|
Mode mode() const;
|
|
void setMode( Mode md);
|
|
TQString thing() const;
|
|
void setThing( const TQString &t);
|
|
private:
|
|
Mode m_mode;
|
|
TQString m_thing;
|
|
|
|
};
|
|
|
|
} // namespace
|
|
} // namespace
|
|
|
|
#endif // KJSEMBED_IMAGE_IMP_H
|