|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
4 ** All rights reserved. |
|
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 ** |
|
7 ** This file is part of the Qt Mobility Components. |
|
8 ** |
|
9 ** $QT_BEGIN_LICENSE:LGPL$ |
|
10 ** No Commercial Usage |
|
11 ** This file contains pre-release code and may not be distributed. |
|
12 ** You may use this file in accordance with the terms and conditions |
|
13 ** contained in the Technology Preview License Agreement accompanying |
|
14 ** this package. |
|
15 ** |
|
16 ** GNU Lesser General Public License Usage |
|
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 ** General Public License version 2.1 as published by the Free Software |
|
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 ** packaging of this file. Please review the following information to |
|
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
|
28 ** If you have questions regarding the use of this file, please contact |
|
29 ** Nokia at qt-info@nokia.com. |
|
30 ** |
|
31 ** |
|
32 ** |
|
33 ** |
|
34 ** |
|
35 ** |
|
36 ** |
|
37 ** |
|
38 ** $QT_END_LICENSE$ |
|
39 ** |
|
40 ****************************************************************************/ |
|
41 |
|
42 #ifndef QMEDIAIMAGEVIEWER_H |
|
43 #define QMEDIAIMAGEVIEWER_H |
|
44 |
|
45 #include "qmediaobject.h" |
|
46 #include "qmediacontent.h" |
|
47 |
|
48 QT_BEGIN_NAMESPACE |
|
49 |
|
50 class QMediaPlaylist; |
|
51 |
|
52 class QMediaImageViewerPrivate; |
|
53 class Q_MULTIMEDIA_EXPORT QMediaImageViewer : public QMediaObject |
|
54 { |
|
55 Q_OBJECT |
|
56 Q_PROPERTY(State state READ state NOTIFY stateChanged) |
|
57 Q_PROPERTY(MediaStatus mediaStatus READ mediaStatus NOTIFY mediaStatusChanged) |
|
58 Q_PROPERTY(QMediaContent media READ media WRITE setMedia NOTIFY mediaChanged) |
|
59 Q_PROPERTY(int timeout READ timeout WRITE setTimeout) |
|
60 Q_PROPERTY(int elapsedTime READ elapsedTime NOTIFY elapsedTimeChanged) |
|
61 Q_ENUMS(State MediaStatus) |
|
62 |
|
63 public: |
|
64 enum State |
|
65 { |
|
66 StoppedState, |
|
67 PlayingState, |
|
68 PausedState |
|
69 }; |
|
70 |
|
71 enum MediaStatus |
|
72 { |
|
73 NoMedia, |
|
74 LoadingMedia, |
|
75 LoadedMedia, |
|
76 InvalidMedia |
|
77 }; |
|
78 |
|
79 explicit QMediaImageViewer(QObject *parent = 0); |
|
80 ~QMediaImageViewer(); |
|
81 |
|
82 State state() const; |
|
83 MediaStatus mediaStatus() const; |
|
84 |
|
85 QMediaContent media() const; |
|
86 QMediaPlaylist *playlist() const; |
|
87 |
|
88 int timeout() const; |
|
89 int elapsedTime() const; |
|
90 |
|
91 bool bind(QObject *); |
|
92 void unbind(QObject *); |
|
93 |
|
94 public Q_SLOTS: |
|
95 void setMedia(const QMediaContent &media); |
|
96 void setPlaylist(QMediaPlaylist *playlist); |
|
97 |
|
98 void play(); |
|
99 void pause(); |
|
100 void stop(); |
|
101 |
|
102 void setTimeout(int timeout); |
|
103 |
|
104 Q_SIGNALS: |
|
105 void stateChanged(QMediaImageViewer::State state); |
|
106 void mediaStatusChanged(QMediaImageViewer::MediaStatus status); |
|
107 void mediaChanged(const QMediaContent &media); |
|
108 void elapsedTimeChanged(int time); |
|
109 protected: |
|
110 void timerEvent(QTimerEvent *event); |
|
111 |
|
112 private: |
|
113 Q_DECLARE_PRIVATE(QMediaImageViewer) |
|
114 Q_PRIVATE_SLOT(d_func(), void _q_mediaStatusChanged(QMediaImageViewer::MediaStatus)) |
|
115 Q_PRIVATE_SLOT(d_func(), void _q_playlistMediaChanged(const QMediaContent &)) |
|
116 Q_PRIVATE_SLOT(d_func(), void _q_playlistDestroyed()) |
|
117 }; |
|
118 |
|
119 QT_END_NAMESPACE |
|
120 |
|
121 #endif |