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.
tdesdk/kuiviewer/main.cpp

89 lines
3.0 KiB

/**
*
* This file is part of the kuiviewer package
* Copyright (c) 2003 Richard Moore <rich@kde.org>
* Copyright (c) 2003 Ian Reinhart Geiser <geiseri@kde.org>
* Copyright (c) 2004 Benjamin C. Meyer <ben+kuiviewer@meyerhome.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#include "kuiviewer.h"
#include <tdeapplication.h>
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>
static TDECmdLineOptions options[] =
{
{ "+[URL]", I18N_NOOP( "Document to open" ), 0 },
{ "s",0,0 },
{ "takescreenshot <filename>", I18N_NOOP( "Save screenshot to file and exit" ), 0 },
{ "w",0,0 },
{ "screenshotwidth <int>", I18N_NOOP( "Screenshot width" ), "-1" },
{ "h",0,0 },
{ "screenshotheight <int>", I18N_NOOP( "Screenshot height" ), "-1" },
TDECmdLineLastOption
};
int main(int argc, char **argv)
{
TDEAboutData about("kuiviewer", I18N_NOOP("KUIViewer"), "0.1",
I18N_NOOP("Displays Designer's UI files"),
TDEAboutData::License_LGPL );
about.addAuthor("Richard Moore", 0, "rich@kde.org");
about.addAuthor("Ian Reinhart Geiser", 0, "geiseri@kde.org");
// Screenshot capability
about.addAuthor("Benjamin C. Meyer", 0, "ben+kuiviewer@meyerhome.net");
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions( options );
TDEApplication app;
// see if we are starting with session management
if (app.isRestored())
RESTORE(KUIViewer)
else
{
// no session.. just start up normally
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if ( args->count() == 0 )
{
KUIViewer *widget = new KUIViewer;
widget->show();
}
else
{
int i = 0;
for (; i < args->count(); i++ ) {
KUIViewer *widget = new KUIViewer;
widget->load( args->url(i) );
if (args->isSet("takescreenshot")){
widget->takeScreenshot(args->getOption("takescreenshot"),
TQString(args->getOption("screenshotwidth")).toInt(),
TQString(args->getOption("screenshotheight")).toInt());
return 0;
}
widget->show();
}
}
args->clear();
}
return app.exec();
}