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/bindings/iconset_imp.cpp | |
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/bindings/iconset_imp.cpp')
-rw-r--r-- | kjsembed/bindings/iconset_imp.cpp | 167 |
1 files changed, 167 insertions, 0 deletions
diff --git a/kjsembed/bindings/iconset_imp.cpp b/kjsembed/bindings/iconset_imp.cpp new file mode 100644 index 00000000..3575cc94 --- /dev/null +++ b/kjsembed/bindings/iconset_imp.cpp @@ -0,0 +1,167 @@ +// -*- c++ -*- + +/* + * Copyright (C) 2003, Ian Reinhart Geiser <geiseri@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. + */ + +#include <kjsembed/global.h> +#include <kjsembed/jsvalueproxy.h> +#include <kjsembed/jsbinding.h> +#include <qvariant.h> +#include <qiconset.h> +#include <qpixmap.h> + +#include "iconset_imp.h" + +namespace KJSEmbed { +namespace Bindings { + +IconsetImp::IconsetImp( KJS::ExecState *exec, int id ) + : JSProxyImp(exec), mid(id) +{ +} + +IconsetImp::~IconsetImp() +{ +} + +void IconsetImp::addBindings( KJS::ExecState *exec, KJS::Object &object ) { + + JSValueProxy *op = JSProxy::toValueProxy( object.imp() ); + if ( !op ) { + kdWarning() << "IconsetImp::addBindings() failed, not a JSValueProxy" << endl; + return; + } + + if ( op->typeName() != "QIconset" ) { + kdWarning() << "IconsetImp::addBindings() failed, type is " << op->typeName() << endl; + return; + } + + JSProxy::MethodTable methods[] = { + { MethodReset, "reset"}, + { MethodSetPixmap, "setPixmap"}, + { MethodPixmap, "pixmap"}, + { MethodIsGenerated, "isGenerated"}, + { MethodClearGenerated, "clearGenerated"}, + { MethodIsNull, "isNull"}, + { MethodDetach, "detach"}, + { 0, 0 } + }; + + int idx = 0; + do { + IconsetImp *meth = new IconsetImp( exec, methods[idx].id ); + object.put( exec , methods[idx].name, KJS::Object(meth) ); + ++idx; + } while( methods[idx].id ); + + // + // Define the enum constants + // + struct EnumValue { + const char *id; + int val; + }; + + EnumValue enums[] = { + // Size + { "Automatic", 0 }, + { "Small", 1 }, + { "Large", 2 }, + // Mode + { "Normal", 0 }, + { "Disabled", 1 }, + { "Active", 2 }, + // State + { "On", 0 }, + { "Off", 1 }, + { 0, 0 } + }; + + int enumidx = 0; + do { + object.put( exec, enums[enumidx].id, KJS::Number(enums[enumidx].val), KJS::ReadOnly ); + ++enumidx; + } while( enums[enumidx].id ); +} + +KJS::Value IconsetImp::call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ) { + + JSValueProxy *op = JSProxy::toValueProxy( self.imp() ); + if ( !op ) { + kdWarning() << "IconsetImp::call() failed, not a JSValueProxy" << endl; + return KJS::Value(); + } + + if ( op->typeName() != "QIconSet" ) { + kdWarning() << "IconsetImp::call() failed, type is " << op->typeName() << endl; + return KJS::Value(); + } + + QIconSet iconset = op->toVariant().toIconSet(); + + KJS::Value retValue = KJS::Value(); + switch ( mid ) { + case MethodReset: + { + QPixmap pix = extractQPixmap(exec, args, 0); + QIconSet::Size size = (QIconSet::Size) extractInt(exec, args, 1 ); + iconset.reset(pix,size); + break; + } + case MethodSetPixmap: + { + QPixmap pix = extractQPixmap( exec, args, 0); + QString fname = extractQString( exec, args, 0); + QIconSet::Size size = (QIconSet::Size) extractInt(exec, args, 1 ); + QIconSet::Mode mode = (QIconSet::Mode) extractInt( exec, args, 2 ); + QIconSet::State state = (QIconSet::State) extractInt( exec, args, 3); + if( pix.isNull() ) + iconset.setPixmap( fname, size, mode, state ); + else + iconset.setPixmap( pix, size, mode, state ); + break; + } + case MethodPixmap: + { + QPixmap pix; + + if( args.size() == 3 ) + { + QIconSet::Size size = (QIconSet::Size)extractInt( exec, args, 0 ); + QIconSet::Mode mode = (QIconSet::Mode)extractInt( exec, args, 1 ); + QIconSet::State state = (QIconSet::State)extractInt( exec, args, 1 ); + pix = iconset.pixmap( size, mode, state ); + } + else + pix = iconset.pixmap(); + + break; + } + default: + kdWarning() << "Iconset has no method " << mid << endl; + break; + } + + op->setValue(iconset); + return retValue; +} + +} // namespace KJSEmbed::Bindings +} // namespace KJSEmbed |