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.
153 lines
6.7 KiB
153 lines
6.7 KiB
|
|
/*
|
|
*
|
|
* $Id: main.cpp 689578 2007-07-18 15:56:58Z trueg $
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdeaboutdata.h>
|
|
#include <tdelocale.h>
|
|
#include <kprocess.h>
|
|
#include <tdemessagebox.h>
|
|
#include <kstandarddirs.h>
|
|
#include <ksimpleconfig.h>
|
|
#include <kstdguiitem.h>
|
|
#include <kdebug.h>
|
|
#include <dcopclient.h>
|
|
#include <dcopref.h>
|
|
#include <kurl.h>
|
|
|
|
#include <tqfile.h>
|
|
#include <tqcstring.h>
|
|
#include <tqdatastream.h>
|
|
#include <tqtimer.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "k3bapplication.h"
|
|
#include <k3bglobals.h>
|
|
#include <k3bcore.h>
|
|
|
|
|
|
#include <config.h>
|
|
|
|
static const char* description = I18N_NOOP("A CD and DVD burning application");
|
|
|
|
|
|
static TDECmdLineOptions options[] =
|
|
{
|
|
{ "+[URL(s)]", I18N_NOOP("file(s) to open"), 0 },
|
|
{ "datacd", I18N_NOOP("Create a new data CD project and add all given files"), 0 },
|
|
{ "audiocd", I18N_NOOP("Create a new audio CD project and add all given files"), 0 },
|
|
{ "videocd", I18N_NOOP("Create a new video CD project and add all given files"), 0 },
|
|
{ "mixedcd", I18N_NOOP("Create a new mixed mode CD project and add all given files"), 0 },
|
|
{ "emovixcd", I18N_NOOP("Create a new eMovix CD project and add all given files"), 0 },
|
|
{ "datadvd", I18N_NOOP("Create a new data DVD project and add all given files"), 0 },
|
|
{ "emovixdvd", I18N_NOOP("Create a new eMovix DVD project and add all given files"), 0 },
|
|
{ "videodvd", I18N_NOOP("Create a new Video DVD project and add all given files"), 0 },
|
|
{ "burn", I18N_NOOP("Open the project burn dialog for the current project"), 0 },
|
|
{ "copycd <device>", I18N_NOOP("Open the CD copy dialog, optionally specify the source device"), 0 },
|
|
{ "copydvd <device>", I18N_NOOP("Open the DVD copy dialog"), 0 },
|
|
{ "cdimage <url>", I18N_NOOP("Write a CD image to a CD-R(W)"), 0 },
|
|
{ "dvdimage <url>", I18N_NOOP("Write a DVD ISO9660 image to a DVD"), 0 },
|
|
{ "image <url>", I18N_NOOP("Write a CD or DVD image to a CD-R(W) or DVD depending on the size"), 0 },
|
|
{ "erasecd <device>", I18N_NOOP("Erase a CDRW"), 0 },
|
|
{ "formatdvd <device>", I18N_NOOP("Format a DVD-RW or DVD+RW"), 0 },
|
|
{ "cddarip <device>", I18N_NOOP("Extract Audio tracks digitally (+encoding)"), 0 },
|
|
{ "videodvdrip <device>", I18N_NOOP("Rip Video DVD Titles (+transcoding)"), 0 },
|
|
{ "videocdrip <device>", I18N_NOOP("Rip Video CD Tracks"), 0 },
|
|
{ "lang <language>", I18N_NOOP("Set the GUI language"), 0 },
|
|
{ "nosplash", I18N_NOOP("Disable the splash screen"), 0 },
|
|
{ "ao <method>", I18N_NOOP("Set the audio output method (like arts or alsa depending on the installed plugins)"), 0 },
|
|
{ "device <device>", I18N_NOOP( "Set the device to be used for new projects (This option has no effect. "
|
|
"Its main purpose is to enable handling of empty media from the TDE Media Manager)." ), 0 },
|
|
TDECmdLineLastOption
|
|
};
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
TDEAboutData aboutData( "k3b", "K3b",
|
|
LIBK3B_VERSION, description, TDEAboutData::License_GPL,
|
|
"(c) 1999 - 2007, Sebastian Trüg", 0 );
|
|
aboutData.addAuthor("Sebastian Trüg",I18N_NOOP("Maintainer and Lead Developer"), "trueg@k3b.org");
|
|
aboutData.addAuthor("Christian Kvasny",I18N_NOOP("VideoCD Project and VideoCD ripping"), "chris@k3b.org");
|
|
aboutData.addCredit("Klaus-Dieter Krannich", I18N_NOOP("Advanced Cdrdao integration"), "kd@k3b.org" );
|
|
|
|
aboutData.addCredit("Thomas Froescher",
|
|
I18N_NOOP("VideoDVD ripping and video encoding in pre-1.0 versions."),
|
|
"tfroescher@k3b.org");
|
|
aboutData.addCredit("Alexis Younes aka Ayo",
|
|
I18N_NOOP("For his bombastic artwork."),
|
|
"73lab@free.fr" );
|
|
aboutData.addCredit("Christoph Thielecke",
|
|
I18N_NOOP("For extensive testing and the first German translation."),
|
|
"crissi99@gmx.de");
|
|
aboutData.addCredit("Andy Polyakov",
|
|
I18N_NOOP("For the great dvd+rw-tools and the nice cooperation."),
|
|
"appro@fy.chalmers.se" );
|
|
aboutData.addCredit("Roberto De Leo",
|
|
I18N_NOOP("For the very cool eMovix package and his accommodating work."),
|
|
"peggish@users.sf.net" );
|
|
aboutData.addCredit("John Steele Scott",
|
|
I18N_NOOP("For the flac decoding plugin."),
|
|
"toojays@toojays.net" );
|
|
aboutData.addCredit("György Szombathelyi",
|
|
I18N_NOOP("For the very useful isofslib."),
|
|
"gyurco@users.sourceforge.net" );
|
|
aboutData.addCredit("Erik de Castro Lopo",
|
|
I18N_NOOP("For libsamplerate which is used for generic resampling in the audio decoder framework."),
|
|
"erikd@mega-nerd.com" );
|
|
aboutData.addCredit("Jakob Petsovits",
|
|
I18N_NOOP("For the very cool conditional audio ripping pattern."),
|
|
"jpetso@gmx.at" );
|
|
aboutData.addCredit("Heiner Eichmann",
|
|
I18N_NOOP("For his work on the BSD port and some great patches."),
|
|
"h.eichmann@gmx.de" );
|
|
aboutData.addCredit("Adriaan De Groot",
|
|
I18N_NOOP("For his work on the BSD port."),
|
|
"" );
|
|
aboutData.addCredit("Thiago Macieira",
|
|
I18N_NOOP("For his help with the many invalid k3b entries on bugs.kde.org."),
|
|
"thiago@kde.org" );
|
|
aboutData.addCredit("Marcel Dierkes",
|
|
I18N_NOOP("For the great K3b icon eyecandy."),
|
|
"marcel.dierkes@gmx.de" );
|
|
aboutData.addCredit("Christoph Burger-Scheidlin",
|
|
I18N_NOOP("For his neverending help cleaning out the K3b bug database."),
|
|
"andersin@freenet.de" );
|
|
aboutData.addCredit( "Robert Wadley",
|
|
I18N_NOOP( "Rob created a great theme and came up with the idea for transparent themes." ),
|
|
"rob@robntina.fastmail.us" );
|
|
aboutData.addCredit( "Dmitry Novikov",
|
|
I18N_NOOP( "For the amazing K3b 1.0 theme." ),
|
|
"quant@trktvs.ru" );
|
|
|
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
|
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
|
|
|
|
if( K3bApplication::start() ) {
|
|
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
|
|
if( args->isSet("lang") )
|
|
if( !TDEGlobal::locale()->setLanguage(args->getOption("lang")) )
|
|
kdDebug() << "Unable to set to language " << args->getOption("lang")
|
|
<< " current is: " << TDEGlobal::locale()->language() << endl;
|
|
|
|
K3bApplication app;
|
|
|
|
// we need a running app for the init method
|
|
TQTimer::singleShot( 0, &app, TQT_SLOT(init()) );
|
|
|
|
return app.exec();
|
|
}
|
|
}
|