You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.5 KiB
108 lines
2.5 KiB
/*
|
|
*
|
|
* $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $
|
|
* Copyright (C) 2006 Sebastian Trueg <trueg@k3b.org>
|
|
*
|
|
* This file is part of the K3b project.
|
|
* Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
|
|
*
|
|
* 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 <tqstringlist.h>
|
|
|
|
|
|
class K3bBusyWidget;
|
|
class TQLabel;
|
|
class K3bAudioTrack;
|
|
class K3bAudioDataSource;
|
|
class K3bThreadJob;
|
|
class K3bAudioDoc;
|
|
|
|
|
|
class K3bAudioTrackAddingDialog : public KDialogBase, public K3bJobHandler
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
~K3bAudioTrackAddingDialog();
|
|
|
|
/**
|
|
* @reimplemented from K3bJobHandler
|
|
*/
|
|
int waitForMedia( K3bDevice::Device*,
|
|
int = K3bDevice::STATE_EMPTY,
|
|
int = K3bDevice::MEDIA_WRITABLE_CD,
|
|
const TQString& = TQString() ) { return 0; }
|
|
|
|
/**
|
|
* @reimplemented from K3bJobHandler
|
|
*/
|
|
bool questionYesNo( const TQString&,
|
|
const TQString& = TQString(),
|
|
const TQString& = TQString(),
|
|
const TQString& = TQString() ) { return false; }
|
|
|
|
/**
|
|
* reimplemented from K3bJobHandler
|
|
*/
|
|
void blockingInformation( const TQString&,
|
|
const TQString& = TQString() ) {}
|
|
|
|
/**
|
|
* \return \see TQDialog::exec()
|
|
*/
|
|
static int addUrls( const KURL::List& urls,
|
|
K3bAudioDoc* doc,
|
|
K3bAudioTrack* afterTrack = 0,
|
|
K3bAudioTrack* parentTrack = 0,
|
|
K3bAudioDataSource* afterSource = 0,
|
|
TQWidget* parent = 0 );
|
|
|
|
private slots:
|
|
void slotAddUrls();
|
|
void slotAnalysingFinished( bool );
|
|
void slotCancel();
|
|
|
|
private:
|
|
K3bAudioTrackAddingDialog( TQWidget* parent = 0, const char* name = 0 );
|
|
|
|
static KURL::List extractUrlList( const KURL::List& urls );
|
|
|
|
K3bBusyWidget* m_busyWidget;
|
|
TQLabel* m_infoLabel;
|
|
|
|
TQStringList m_unreadableFiles;
|
|
TQStringList m_notFoundFiles;
|
|
TQStringList m_nonLocalFiles;
|
|
TQStringList 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
|