summaryrefslogtreecommitdiffstats
path: root/src/projects/k3baudiotrackaddingdialog.h
blob: 9fa54857e075a8d1a96ab3bbfe67f46ca524aba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* 
 *
 * $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
{
  Q_OBJECT
  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* tqparent = 0 );

 private slots:
  void slotAddUrls();
  void slotAnalysingFinished( bool );
  void slotCancel();

 private:
  K3bAudioTrackAddingDialog( TQWidget* tqparent = 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