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.
55 lines
1.0 KiB
55 lines
1.0 KiB
#include <stdio.h>
|
|
#include <kmedia2.h>
|
|
#include <tdecmdlineargs.h>
|
|
#include <connect.h>
|
|
#include <klocale.h>
|
|
#include <tdeapplication.h>
|
|
#include <tdeaboutdata.h>
|
|
#include "qiomanager.h"
|
|
#include "artskde.h"
|
|
|
|
using namespace std;
|
|
using namespace Arts;
|
|
|
|
|
|
static TDECmdLineOptions options[] =
|
|
{
|
|
{ "+[URL]", I18N_NOOP("URL to open"), 0 },
|
|
TDECmdLineLastOption
|
|
};
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
TDEAboutData aboutData( "kiotest", I18N_NOOP("KIOTest"), I18N_NOOP("0.1"), "", TDEAboutData::License_GPL, "");
|
|
|
|
TDECmdLineArgs::init(argc,argv,&aboutData);
|
|
TDECmdLineArgs::addCmdLineOptions(options);
|
|
TDEApplication app;
|
|
QIOManager qiomanager;
|
|
Dispatcher dispatcher(&qiomanager);
|
|
TDEIOInputStream stream;
|
|
StdoutWriter writer;
|
|
|
|
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
|
|
|
|
if(args->count())
|
|
{
|
|
if(!stream.openURL(args->arg(0)))
|
|
{
|
|
printf("can't open url");
|
|
exit(1);
|
|
}
|
|
}
|
|
else
|
|
exit(1);
|
|
|
|
args->clear();
|
|
|
|
connect(stream, writer);
|
|
|
|
writer.start();
|
|
stream.start();
|
|
|
|
app.exec();
|
|
}
|