Krazy/EBN: fix i18n warnings
[kphotoalbum.git] / ImageManager / VideoManager.h
bloba1386ef4d33eaebc43621b3b42df59203ef3fbcf
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef VIDEOMANAGER_H
19 #define VIDEOMANAGER_H
21 class QPixmap;
22 class KFileItem;
24 #include <qobject.h>
25 #include "RequestQueue.h"
26 #include "Manager.h"
27 #include <QEventLoop>
29 namespace ImageManager
31 class ImageClient;
32 class ImageRequest;
34 class VideoManager :public QObject
36 Q_OBJECT
38 public:
39 static VideoManager& instance();
40 void request( ImageRequest* request );
41 void stop( ImageClient*, StopAction action );
42 bool hasVideoThumbnailSupport() const;
44 protected:
45 void load( ImageRequest* request );
46 void requestLoadNext();
48 protected slots:
49 void slotGotPreview(const KFileItem&, const QPixmap& pixmap );
50 void previewFailed();
52 void testGotPreview(const KFileItem&, const QPixmap& pixmap );
53 void testPreviewFailed();
55 private:
56 VideoManager();
57 RequestQueue _pending;
58 ImageRequest* _currentRequest;
59 bool _hasVideoSupport;
60 mutable QEventLoop _eventLoop;
65 #endif /* VIDEOMANAGER_H */