delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / runtime / kioslave / thumbnail / cursorcreator.cpp
blob036f3a28e28933d27d92e6ef9309addc6fff0046
1 /* This file is part of the KDE libraries
2 Copyright (C) 2003 Fredrik Höglund <fredrik@kde.org>
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.
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.
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., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #include "cursorcreator.h"
22 #include <QImage>
23 #include <QFile>
25 #include <kdemacros.h>
27 #include <X11/Xlib.h>
28 #include <X11/Xcursor/Xcursor.h>
30 extern "C"
32 KDE_EXPORT ThumbCreator *new_creator()
34 return new CursorCreator;
38 bool CursorCreator::create( const QString &path, int width, int height, QImage &img )
40 XcursorImage *cursor = XcursorFilenameLoadImage(
41 QFile::encodeName( path ).data(),
42 width > height ? height : width );
44 if ( cursor ) {
45 img = QImage( reinterpret_cast<uchar *>( cursor->pixels ),
46 cursor->width, cursor->height, QImage::Format_ARGB32_Premultiplied );
48 // Create a deep copy of the image so the image data is preserved
49 img = img.copy();
50 XcursorImageDestroy( cursor );
51 return true;
54 return false;