mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
/*
|
|
* KCompactDisc - A CD drive interface for the KDE Project.
|
|
*
|
|
* Copyright (C) 2007 Alexander Kern <alex.kern@gmx.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef WMLIB_INTERFACE_H
|
|
#define WMLIB_INTERFACE_H
|
|
|
|
#include "kcompactdisc_p.h"
|
|
|
|
class KWMLibCompactDiscPrivate : public KCompactDiscPrivate
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KWMLibCompactDiscPrivate(KCompactDisc *, const QString&, const QString &, const QString&);
|
|
virtual ~KWMLibCompactDiscPrivate();
|
|
|
|
virtual bool createInterface();
|
|
|
|
virtual unsigned trackLength(unsigned);
|
|
virtual bool isTrackAudio(unsigned);
|
|
virtual void playTrackPosition(unsigned, unsigned);
|
|
virtual void pause();
|
|
virtual void stop();
|
|
virtual void eject();
|
|
virtual void closetray();
|
|
|
|
virtual void setVolume(unsigned);
|
|
virtual void setBalance(unsigned);
|
|
virtual unsigned volume();
|
|
virtual unsigned balance();
|
|
|
|
virtual void queryMetadata();
|
|
|
|
|
|
private:
|
|
KCompactDisc::DiscStatus discStatusTranslate(int);
|
|
void *m_handle;
|
|
QString m_audioSystem;
|
|
QString m_audioDevice;
|
|
|
|
|
|
private Q_SLOTS:
|
|
void timerExpired();
|
|
void cdtext();
|
|
};
|
|
|
|
#endif // WMLIB_INTERFACE_H
|