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.
144 lines
2.7 KiB
144 lines
2.7 KiB
/*
|
|
*
|
|
* $Id: k3bdefaultexternalprograms.h 623768 2007-01-15 13:33:55Z trueg $
|
|
* Copyright (C) 2003 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_DEFAULT_EXTERNAL_BIN_PROGRAMS_H_
|
|
#define _K3B_DEFAULT_EXTERNAL_BIN_PROGRAMS_H_
|
|
|
|
#include "k3bexternalbinmanager.h"
|
|
#include "k3b_export.h"
|
|
class K3bExternalBinManager;
|
|
|
|
namespace K3b
|
|
{
|
|
LIBK3B_EXPORT void addDefaultPrograms( K3bExternalBinManager* );
|
|
LIBK3B_EXPORT void addTranscodePrograms( K3bExternalBinManager* );
|
|
LIBK3B_EXPORT void addVcdimagerPrograms( K3bExternalBinManager* );
|
|
}
|
|
|
|
|
|
class LIBK3B_EXPORT K3bCdrecordProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bCdrecordProgram( bool dvdPro );
|
|
|
|
bool scan( const TQString& );
|
|
|
|
private:
|
|
bool m_dvdPro;
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bMkisofsProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bMkisofsProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bReadcdProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bReadcdProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bCdrdaoProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bCdrdaoProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bTranscodeProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bTranscodeProgram( const TQString& transcodeProgram );
|
|
|
|
bool scan( const TQString& );
|
|
|
|
// no user parameters (yet)
|
|
bool supportsUserParameters() const { return false; }
|
|
|
|
private:
|
|
TQString m_transcodeProgram;
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bVcdbuilderProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bVcdbuilderProgram( const TQString& );
|
|
|
|
bool scan( const TQString& );
|
|
|
|
private:
|
|
TQString m_vcdbuilderProgram;
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bNormalizeProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bNormalizeProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bGrowisofsProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bGrowisofsProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bDvdformatProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bDvdformatProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bDvdBooktypeProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bDvdBooktypeProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
|
|
class LIBK3B_EXPORT K3bCdda2wavProgram : public K3bExternalProgram
|
|
{
|
|
public:
|
|
K3bCdda2wavProgram();
|
|
|
|
bool scan( const TQString& );
|
|
};
|
|
|
|
#endif
|