From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kjsembed/bindings/pixmap_imp.cpp | 180 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 kjsembed/bindings/pixmap_imp.cpp (limited to 'kjsembed/bindings/pixmap_imp.cpp') diff --git a/kjsembed/bindings/pixmap_imp.cpp b/kjsembed/bindings/pixmap_imp.cpp new file mode 100644 index 00000000..68e93658 --- /dev/null +++ b/kjsembed/bindings/pixmap_imp.cpp @@ -0,0 +1,180 @@ +// -*- c++ -*- + +/* + * Copyright (C) 2003, Richard J. Moore + * + * 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 +#include + +#include +#include +#include +#include + +#include "pixmap_imp.h" + +namespace KJSEmbed { +namespace Bindings { + +Pixmap::Pixmap( KJS::ExecState *exec, int id ) + : JSProxyImp(exec), mid(id) +{ +} + +Pixmap::~Pixmap() +{ +} + +void Pixmap::addBindings( KJS::ExecState *exec, KJS::Object &object ) { + + if( !JSProxy::checkType( object, JSProxy::ValueProxy, "QPixmap") ) + return; + + JSProxy::MethodTable methods[] = { + { MethodisNull, "isNull" }, + { Methodwidth, "width" }, + { Methodheight, "height" }, + { Methodsize, "size" }, + { Methodrect, "rect" }, + { Methoddepth, "depth" }, + { Methodresize, "resize" }, + { Methodfill, "fill" }, + { Methodmask, "mask" }, + { MethodsetMask, "setMask" }, + { MethodcreateHeuristicMask, "createHeuristicMask" }, + { MethodgrabWindow, "grabWindow" }, + { 0, 0 } + }; + + JSProxy::addMethods(exec, methods, object); + +} + +KJS::Value Pixmap::call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ) { + + if( !JSProxy::checkType( self, JSProxy::ValueProxy, "QPixmap") ) + return KJS::Value(); + + JSValueProxy *op = JSProxy::toValueProxy( self.imp() ); + pix = op->toVariant().toPixmap(); + + KJS::Value retValue = KJS::Value(); + switch ( mid ) { + case Methodwidth: + retValue = KJS::Number(width()); + break; + case Methodheight: + retValue = KJS::Number(height()); + break; + case Methoddepth: + retValue = KJS::Number(depth()); + break; + case MethodisNull: + retValue = KJS::Boolean(isNull()); + break; + case Methodsize: + retValue = convertToValue(exec, size()); + break; + case Methodrect: + retValue = convertToValue(exec, rect()); + break; + case Methodresize: + { + if( args.size() == 2) + resize(extractInt(exec, args, 0), extractInt(exec, args, 1)); + else if( args.size() == 1) + resize(extractQSize(exec, args, 0) ); + break; + } + case Methodfill: + fill( extractQColor(exec, args, 0)); + break; + case Methodmask: + { + retValue = convertToValue(exec, mask() ); + break; + } + case MethodsetMask: + { + setMask(extractQPixmap(exec, args, 0)); + break; + } + case MethodcreateHeuristicMask: + { + retValue = convertToValue(exec, createHeuristicMask(extractBool(exec, args, 0))); + break; + } + case MethodgrabWindow: + { + int winid = extractInt(exec, args,0); + int x = extractInt(exec, args,1); + int y = extractInt(exec, args,2); + int w = extractInt(exec, args,3); + int h = extractInt(exec, args,4); + grabWindow(winid,x,y,w,h); + break; + } + default: + kdWarning() << "Image has no method " << mid << endl; + break; + } + + op->setValue(pix); + return retValue; +} + +void Pixmap::resize( int w, int h ) +{ + pix.resize( w, h ); +} + +void Pixmap::resize( const QSize &size ) +{ + pix.resize( size ); +} + +void Pixmap::fill( const QColor &c ) +{ + pix.fill( c ); +} + +void Pixmap::grabWindow(int winID, int x, int y, int w, int h) +{ + pix = QPixmap::grabWindow((WId)winID, x, y, w, h); +} + +QPixmap Pixmap::mask() +{ + return *(pix.mask()); +} +void Pixmap::setMask(const QPixmap& mask) +{ + QBitmap bm; + bm = mask; + pix.setMask(bm); +} + +QPixmap Pixmap::createHeuristicMask ( bool clipTight ) +{ + return (QPixmap)pix.createHeuristicMask(clipTight); +} + +} // namespace KJSEmbed::Bindings +} // namespace KJSEmbed + -- cgit v1.2.1