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.
tdemultimedia/juk/k3bexporter.h

95 lines
2.6 KiB

/***************************************************************************
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
{
TQ_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
{
TQ_OBJECT
public:
K3bPlaylistExporter(PlaylistBox *parent = 0);
virtual TDEAction *action();
private slots:
void slotExport();
private:
PlaylistBox *m_playlistBox;
};
#endif /* K3BEXPORTER_H */