mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
74 lines
2.7 KiB
C++
74 lines
2.7 KiB
C++
/***************************************************************************
|
|
main.cpp - Main file for the KFileReplace shell
|
|
-------------------
|
|
begin : Thu Sep 16 14:14:09 2004
|
|
copyright : (C) 2004 by Andras Mantia <amantia@kde.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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "kfilereplace.h"
|
|
|
|
#include <kapplication.h>
|
|
#include <kaboutdata.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <klocale.h>
|
|
|
|
static const char description[] =
|
|
I18N_NOOP("Batch search and replace tool");
|
|
|
|
static const char version[] = "0.1";
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
KAboutData about("kfilereplace", 0, ki18n("KFileReplace"), version, ki18n(description),
|
|
KAboutData::License_GPL_V2, ki18n("(C) 2004-2005 Andras Mantia\n(C) 2004-2005 Emiliano Gulmini\n(C) 1999-2002 François Dupoux"), ki18n("Part of the KDEWebDev module."),
|
|
"http://kde.org/applications/utilities/kfilereplace/");
|
|
|
|
about.addAuthor(ki18n("Andras Mantia"), ki18n("Shell author, KPart creator, co-maintainer"), "amantia@kde.org");
|
|
about.addAuthor(ki18n("Emiliano Gulmini"), ki18n("Current maintainer, code cleaner and rewriter"),"emi_barbarossa@yahoo.it");
|
|
about.addAuthor(ki18n("François Dupoux"),
|
|
ki18n("Original author of the KFileReplace tool"),
|
|
"dupoux@dupoux.com");
|
|
|
|
KCmdLineArgs::init(argc, argv, &about);
|
|
|
|
KCmdLineOptions options;
|
|
options.add("+[PATH]", ki18n( "Starting folder" ));
|
|
KCmdLineArgs::addCmdLineOptions( options );
|
|
|
|
KApplication app;
|
|
|
|
// see if we are starting with session management
|
|
if (app.isSessionRestored())
|
|
{
|
|
RESTORE(KFileReplace);
|
|
}
|
|
else
|
|
{
|
|
// no session.. just start up normally
|
|
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
|
|
|
KFileReplace *kfr = new KFileReplace;
|
|
kfr->show();
|
|
|
|
if (args->count() == 0)
|
|
{
|
|
kfr->openURL(KUrl());
|
|
}
|
|
else
|
|
{
|
|
kfr->openURL(args->url(0));
|
|
}
|
|
args->clear();
|
|
}
|
|
|
|
return app.exec();
|
|
}
|