diff options
Diffstat (limited to 'src/projects/k3baudiotrackaddingdialog.h')
-rw-r--r-- | src/projects/k3baudiotrackaddingdialog.h | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/src/projects/k3baudiotrackaddingdialog.h b/src/projects/k3baudiotrackaddingdialog.h new file mode 100644 index 0000000..4590e95 --- /dev/null +++ b/src/projects/k3baudiotrackaddingdialog.h @@ -0,0 +1,106 @@ +/* + * + * $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $ + * Copyright (C) 2006 Sebastian Trueg <[email protected]> + * + * This file is part of the K3b project. + * Copyright (C) 1998-2007 Sebastian Trueg <[email protected]> + * + * 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 of the License, or + * (at your option) any later version. + * See the file "COPYING" for the exact licensing terms. + */ + +#ifndef _K3B_AUDIO_TRACK_ADDING_DIALOG_H_ +#define _K3B_AUDIO_TRACK_ADDING_DIALOG_H_ + +#include <k3bjobhandler.h> +#include <kdialogbase.h> +#include <kurl.h> +#include <qstringlist.h> + + +class K3bBusyWidget; +class QLabel; +class K3bAudioTrack; +class K3bAudioDataSource; +class K3bThreadJob; +class K3bAudioDoc; + + +class K3bAudioTrackAddingDialog : public KDialogBase, public K3bJobHandler +{ + Q_OBJECT + + public: + ~K3bAudioTrackAddingDialog(); + + /** + * @reimplemented from K3bJobHandler + */ + int waitForMedia( K3bDevice::Device*, + int = K3bDevice::STATE_EMPTY, + int = K3bDevice::MEDIA_WRITABLE_CD, + const QString& = QString::null ) { return 0; } + + /** + * @reimplemented from K3bJobHandler + */ + bool questionYesNo( const QString&, + const QString& = QString::null, + const QString& = QString::null, + const QString& = QString::null ) { return false; } + + /** + * reimplemented from K3bJobHandler + */ + void blockingInformation( const QString&, + const QString& = QString::null ) {} + + /** + * \return \see QDialog::exec() + */ + static int addUrls( const KURL::List& urls, + K3bAudioDoc* doc, + K3bAudioTrack* afterTrack = 0, + K3bAudioTrack* parentTrack = 0, + K3bAudioDataSource* afterSource = 0, + QWidget* parent = 0 ); + + private slots: + void slotAddUrls(); + void slotAnalysingFinished( bool ); + void slotCancel(); + + private: + K3bAudioTrackAddingDialog( QWidget* parent = 0, const char* name = 0 ); + + static KURL::List extractUrlList( const KURL::List& urls ); + + K3bBusyWidget* m_busyWidget; + QLabel* m_infoLabel; + + QStringList m_unreadableFiles; + QStringList m_notFoundFiles; + QStringList m_nonLocalFiles; + QStringList m_unsupportedFiles; + + KURL::List m_urls; + + K3bAudioDoc* m_doc; + K3bAudioTrack* m_trackAfter; + K3bAudioTrack* m_parentTrack; + K3bAudioDataSource* m_sourceAfter; + + KURL m_cueUrl; + + bool m_bCanceled; + + class AnalyserThread; + AnalyserThread* m_analyserThread; + K3bThreadJob* m_analyserJob; +}; + +#endif |