summaryrefslogtreecommitdiffstats
path: root/kuiviewer/main.cpp
blob: d08952763d7f40f53b9ccd9ff954bd2a45e8a206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/**
 *
 *  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 <klocale.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();
}