/* * Copyright (c) 2007 Paolo Capriotti * Copyright (c) 2009 Aaron Seigo * * This program 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, or * (at your option) any later version. * * This program 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 General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef PLASMA_WALLPAPERRENDERTHREAD_P_H #define PLASMA_WALLPAPERRENDERTHREAD_P_H #include #include #include #include #include #include #include "plasma/wallpaper.h" namespace Plasma { class WallpaperRenderRequest { public: WallpaperRenderRequest() : token(++s_token) { } QWeakPointer requester; QImage providedImage; QString file; QSize size; Wallpaper::ResizeMethod resizeMethod; QColor color; int token; static int s_token; }; class WallpaperRenderThread : public QThread { Q_OBJECT public: WallpaperRenderThread(const WallpaperRenderRequest &request, QObject *parent = 0); virtual ~WallpaperRenderThread(); static void render(const WallpaperRenderRequest &request); Q_SIGNALS: void done(const WallpaperRenderRequest &request, const QImage &image); protected: virtual void run(); private: static void checkQueue(); WallpaperRenderRequest m_request; bool m_abort; static int s_rendererCount; static QQueue s_renderQueue; }; } // namespace Plasma Q_DECLARE_METATYPE(Plasma::WallpaperRenderRequest) #endif // PLASMA_WALLPAPERRENDERTHREAD_P_H