34
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Implementation of QMPXVideoPlaybackDetailsPlaybackWindow
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
40
|
18 |
// Version : %version: 7 %
|
34
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
#ifndef MPXVIDEOPLAYBACKDETAILSPLAYBACKWINDOW_H_
|
|
23 |
#define MPXVIDEOPLAYBACKDETAILSPLAYBACKWINDOW_H_
|
|
24 |
|
|
25 |
#include <hbwidget.h>
|
|
26 |
#include <mpxplaybackframeworkdefs.h>
|
|
27 |
|
|
28 |
class HbPushButton;
|
|
29 |
class QMPXVideoPlaybackControlsController;
|
|
30 |
|
|
31 |
class QMPXVideoPlaybackDetailsPlaybackWindow : public HbWidget
|
|
32 |
{
|
|
33 |
Q_OBJECT
|
|
34 |
|
|
35 |
public:
|
|
36 |
QMPXVideoPlaybackDetailsPlaybackWindow( QMPXVideoPlaybackControlsController* controller );
|
|
37 |
virtual ~QMPXVideoPlaybackDetailsPlaybackWindow();
|
|
38 |
void initialize();
|
|
39 |
void updateState( TMPXPlaybackState state );
|
|
40 |
|
|
41 |
private slots:
|
|
42 |
void playPause();
|
|
43 |
|
|
44 |
private:
|
|
45 |
QMPXVideoPlaybackControlsController *mController;
|
|
46 |
HbPushButton *mPlayButton;
|
|
47 |
|
|
48 |
bool mInitialized;
|
|
49 |
};
|
|
50 |
|
|
51 |
#endif /*MPXVIDEOPLAYBACKDETAILSPLAYBACKWINDOW_H_*/
|
|
52 |
|