initial project import from KDevelop
This commit is contained in:
commit
c0cf369b92
22 changed files with 983 additions and 0 deletions
72
src/main.cpp
Normal file
72
src/main.cpp
Normal file
|
@ -0,0 +1,72 @@
|
|||
/***************************************************************************
|
||||
* Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> *
|
||||
* *
|
||||
* 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. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU General Public License *
|
||||
* along with this program; if not, write to the *
|
||||
* Free Software Foundation, Inc., *
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
|
||||
***************************************************************************/
|
||||
|
||||
#include "danbooru_client.h"
|
||||
#include <KDE/KApplication>
|
||||
#include <KDE/KAboutData>
|
||||
#include <KDE/KCmdLineArgs>
|
||||
#include <KDE/KLocale>
|
||||
|
||||
static const char description[] =
|
||||
I18N_NOOP("A KDE 4 Application");
|
||||
|
||||
static const char version[] = "%{VERSION}";
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
KAboutData about("danbooru_client", 0, ki18n("danbooru_client"), version, ki18n(description),
|
||||
KAboutData::License_GPL, ki18n("(C) %{CURRENT_YEAR} %{AUTHOR}"), KLocalizedString(), 0, "%{EMAIL}");
|
||||
about.addAuthor( ki18n("%{AUTHOR}"), KLocalizedString(), "%{EMAIL}" );
|
||||
KCmdLineArgs::init(argc, argv, &about);
|
||||
|
||||
KCmdLineOptions options;
|
||||
options.add("+[URL]", ki18n( "Document to open" ));
|
||||
KCmdLineArgs::addCmdLineOptions(options);
|
||||
KApplication app;
|
||||
|
||||
danbooru_client *widget = new danbooru_client;
|
||||
|
||||
// see if we are starting with session management
|
||||
if (app.isSessionRestored())
|
||||
{
|
||||
RESTORE(danbooru_client);
|
||||
}
|
||||
else
|
||||
{
|
||||
// no session.. just start up normally
|
||||
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
||||
if (args->count() == 0)
|
||||
{
|
||||
//danbooru_client *widget = new danbooru_client;
|
||||
widget->show();
|
||||
}
|
||||
else
|
||||
{
|
||||
int i = 0;
|
||||
for (; i < args->count(); i++)
|
||||
{
|
||||
//danbooru_client *widget = new danbooru_client;
|
||||
widget->show();
|
||||
}
|
||||
}
|
||||
args->clear();
|
||||
}
|
||||
|
||||
return app.exec();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue