2 * Copyright (C) 2006 George Staikos <staikos@kde.org>
3 * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
4 * Copyright (C) 2006 Zack Rusin <zack@kde.org>
5 * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include <wtf/Platform.h>
33 #include <kapplication.h>
34 #include <kcmdlineargs.h>
40 #include <page/Page.h>
42 #include <QVBoxLayout>
45 using namespace WebCore;
47 static KCmdLineOptions options[] =
49 { "+file", "File to load", 0 },
53 int main(int argc, char **argv)
55 KCmdLineArgs::init(argc, argv, "testunity", "testunity",
56 "unity testcase app", "0.1");
57 KCmdLineArgs::addCmdLineOptions(options);
59 KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
62 QBoxLayout *l = new QVBoxLayout(&topLevel);
64 FrameQt *f = new FrameQt(&topLevel);
66 l->addWidget(f->view()->qwidget());
68 f->view()->qwidget()->show();
74 if (args->count() == 0)
75 url = QString("%1/%2").arg(QDir::homePath()).arg(QLatin1String("index.html"));
79 f->openURL(KURL(url.toLatin1()));