Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / runtime / phonon / xine / xinethread.h
blobdb9b1856dfe25ed33b653bb75906f2d8fbaf03cd
1 /* This file is part of the KDE project
2 Copyright (C) 2007 Matthias Kretz <kretz@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
21 #ifndef PHONON_XINE_XINETHREAD_H
22 #define PHONON_XINE_XINETHREAD_H
24 #include <QtCore/QThread>
25 #include <QtCore/QWaitCondition>
26 #include <QtCore/QMutex>
28 namespace Phonon
30 namespace Xine
32 class XineStream;
34 class XineThread : public QThread
36 Q_OBJECT
37 public:
38 XineThread();
39 ~XineThread();
41 void waitForEventLoop();
42 static XineStream *newStream();
43 void quit();
45 protected:
46 void run();
47 bool event(QEvent *e);
49 private slots:
50 void eventLoopReady();
52 private:
53 QMutex m_mutex;
54 QWaitCondition m_waitingForEventLoop;
55 QWaitCondition m_waitingForNewStream;
56 XineStream *m_newStream;
57 bool m_eventLoopReady;
60 } // namespace Xine
61 } // namespace Phonon
62 #endif // PHONON_XINE_XINETHREAD_H