blob: a6b1c27fbda6b02ce76ddc2ac1c1fe47d618d0b2 (
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
|
/***************************************************************************
begin : Mon May 31 2004
copyright : (C) 2004 by Michael Pyne
email : michael.pyne@kdemail.net
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef K3BEXPORTER_H
#define K3BEXPORTER_H
#include "playlistexporter.h"
#include "playlistitem.h"
class TQWidget;
class DCOPRef;
class PlaylistBox;
class PlaylistAction;
/**
* Class that will export the selected items of a playlist to K3b.
*/
class K3bExporter : public PlaylistExporter
{
Q_OBJECT
public:
K3bExporter(Playlist *parent = 0);
/**
* Returns a TDEAction that can be used to invoke the export.
*
* @return action used to start the export.
*/
virtual TDEAction *action();
Playlist *playlist() const { return m_parent; }
void setPlaylist(Playlist *playlist) { m_parent = playlist; }
protected:
void exportPlaylistItems(const PlaylistItemList &items);
private slots:
void slotExport();
private:
enum K3bOpenMode { AudioCD, DataCD, Abort };
// Private method declarations
void exportViaCmdLine(const PlaylistItemList &items);
void exportViaDCOP(const PlaylistItemList &items, DCOPRef &ref);
void DCOPErrorMessage();
bool startNewK3bProject(DCOPRef &ref);
K3bOpenMode openMode();
// Private member variable declarations
Playlist *m_parent;
// Static member used to avoid adding more than one action to KDE's
// action list.
static PlaylistAction *m_action;
};
/**
* Class to export EVERY item in a playlist to K3b. Used with the PlaylistBox
* class to implement context-menus there.
*
* @see PlaylistBox
*/
class K3bPlaylistExporter : public K3bExporter
{
Q_OBJECT
public:
K3bPlaylistExporter(PlaylistBox *parent = 0);
virtual TDEAction *action();
private slots:
void slotExport();
private:
PlaylistBox *m_playlistBox;
};
#endif /* K3BEXPORTER_H */
// vim: set et ts=4 sw=4:
|