~ubuntu-branches/ubuntu/warty/kdebase/warty

« back to all changes in this revision

Viewing changes to kioslave/thumbnail/cursorcreator.cpp

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-09-16 04:51:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040916045145-9vr63kith3k1cpza
Tags: upstream-3.2.2
Import upstream version 3.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  This file is part of the KDE libraries
 
2
    Copyright (C) 2003 Fredrik H�glund <fredrik@kde.org>
 
3
 
 
4
    This library is free software; you can redistribute it and/or
 
5
    modify it under the terms of the GNU Library General Public
 
6
    License as published by the Free Software Foundation; either
 
7
    version 2 of the License, or (at your option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
    Library General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Library General Public License
 
15
    along with this library; see the file COPYING.LIB.  If not, write to
 
16
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
    Boston, MA 02111-1307, USA.
 
18
*/
 
19
 
 
20
#include <qimage.h>
 
21
#include <qfile.h>
 
22
 
 
23
#include "cursorcreator.h"
 
24
 
 
25
#include <X11/Xlib.h>
 
26
#include <X11/Xcursor/Xcursor.h>
 
27
 
 
28
extern "C"
 
29
{
 
30
    ThumbCreator *new_creator()
 
31
    {
 
32
        return new CursorCreator;
 
33
    }
 
34
}
 
35
 
 
36
bool CursorCreator::create( const QString &path, int width, int height, QImage &img )
 
37
{
 
38
    XcursorImage *cursor = XcursorFilenameLoadImage(
 
39
                    QFile::encodeName( path ).data(),
 
40
                    width > height ? height : width );
 
41
 
 
42
    if ( cursor ) {
 
43
        img = QImage( reinterpret_cast<uchar *>( cursor->pixels ),
 
44
                        cursor->width, cursor->height, 32,
 
45
                        NULL, 0, QImage::BigEndian );
 
46
        img.setAlphaBuffer( true );
 
47
 
 
48
        // Convert the image to non-premultiplied alpha
 
49
        Q_UINT32 *pixels = reinterpret_cast<Q_UINT32 *>( img.bits() );
 
50
        for ( int i = 0; i < (img.width() * img.height()); i++ ) {
 
51
                float alpha = qAlpha( pixels[i] ) / 255.0;
 
52
                if ( alpha > 0.0 && alpha < 1.0 )
 
53
                        pixels[i] = qRgba( int( qRed(pixels[i]) / alpha ),
 
54
                                           int( qGreen(pixels[i]) / alpha ),
 
55
                                           int( qBlue(pixels[i]) / alpha ),
 
56
                                           qAlpha(pixels[i]) );
 
57
        }
 
58
 
 
59
        // Create a deep copy of the image so the image data is preserved
 
60
        img = img.copy();
 
61
        XcursorImageDestroy( cursor );
 
62
        return true;
 
63
    }
 
64
 
 
65
    return false;
 
66
}
 
67