選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
filelight/src/app/main.cpp

56 行
1.7 KiB

//Author: Max Howell <max.howell@methylblue.com>, (C) 2003-4
//Copyright: See COPYING file that comes with this distribution
#include "define.h"
#include <tdeaboutdata.h>
#include <tdeapplication.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>
#include <kurl.h>
#include "mainWindow.h"
static const TDECmdLineOptions options[] =
{
{ "+[path]", I18N_NOOP( "Scan 'path'" ), 0 },
{ 0, 0, 0 }
};
static TDEAboutData about(
APP_NAME, I18N_NOOP( APP_PRETTYNAME ), APP_VERSION,
I18N_NOOP("Graphical disk-usage information"), TDEAboutData::License_GPL_V2,
I18N_NOOP("(C )2006 Max Howell"), 0,
"http://www.methylblue.com/filelight/", "filelight@methylblue.com" );
int main( int argc, char *argv[] )
{
using Filelight::MainWindow;
about.addAuthor( "Max Howell", I18N_NOOP("Author, maintainer"), "max.howell@methylblue.com", "http://www.methylblue.com/" );
about.addAuthor( "Mike Diehl", I18N_NOOP("Documentation"), 0, 0 );
about.addCredit( "Steffen Gerlach", I18N_NOOP("Inspiration"), 0, "http://www.steffengerlach.de/" );
about.addCredit( "André Somers", I18N_NOOP("Internationalization") );
about.addCredit( "Stephanie James", I18N_NOOP("Testing") );
about.addCredit( "Marcus Camen", I18N_NOOP("Bravery in the face of unreadable code") );
TDECmdLineArgs::init( argc, argv, &about );
TDECmdLineArgs::addCmdLineOptions( options );
TDEApplication app;
if (!app.isRestored()) {
MainWindow *mw = new MainWindow();
app.setMainWidget( mw );
TDECmdLineArgs* const args = TDECmdLineArgs::parsedArgs();
if (args->count() > 0 ) mw->scan( args->url( 0 ));
args->clear();
mw->show();
}
else RESTORE( MainWindow );
return app.exec();
}