summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/mediaplayer.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/mediaplayer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/mediaplayer.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/multimedia/opieplayer/mediaplayer.h b/core/multimedia/opieplayer/mediaplayer.h
index 379d95c..73f8124 100644
--- a/core/multimedia/opieplayer/mediaplayer.h
+++ b/core/multimedia/opieplayer/mediaplayer.h
@@ -1,51 +1,50 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#ifndef MEDIA_PLAYER_H 20#ifndef MEDIA_PLAYER_H
21#define MEDIA_PLAYER_H 21#define MEDIA_PLAYER_H
22 22
23
24#include <qmainwindow.h> 23#include <qmainwindow.h>
25#include <qframe.h> 24#include <qframe.h>
26#include <qpe/qlibrary.h> 25#include <qpe/qlibrary.h>
27#include "mediaplayerplugininterface.h" 26#include <qpe/mediaplayerplugininterface.h>
28 27
29 28
30class DocLnk; 29class DocLnk;
31 30
32 31
33class MediaPlayer : public QObject { 32class MediaPlayer : public QObject {
34 Q_OBJECT 33 Q_OBJECT
35public: 34public:
36 MediaPlayer( QObject *parent, const char *name ); 35 MediaPlayer( QObject *parent, const char *name );
37 ~MediaPlayer(); 36 ~MediaPlayer();
38 37
39private slots: 38private slots:
40 void setPlaying( bool ); 39 void setPlaying( bool );
41 void pauseCheck( bool ); 40 void pauseCheck( bool );
42 void play(); 41 void play();
43 void next(); 42 void next();
44 void prev(); 43 void prev();
45 void startIncreasingVolume(); 44 void startIncreasingVolume();
46 void startDecreasingVolume(); 45 void startDecreasingVolume();
47 void stopChangingVolume(); 46 void stopChangingVolume();
48 47
49protected: 48protected:
50 void timerEvent( QTimerEvent *e ); 49 void timerEvent( QTimerEvent *e );
51 50