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 <QApplication>
35 #include <kapplication.h>
36 #include <kcmdlineargs.h>
41 #include <FrameView.h>
42 #include <ChromeClientQt.h>
43 #include <ContextMenuClientQt.h>
47 #include <page/Page.h>
49 #include <QVBoxLayout>
52 using namespace WebCore;
55 static KCmdLineOptions options[] =
57 { "+file", "File to load", 0 },
62 int main(int argc, char **argv)
64 QString url = QString("%1/%2").arg(QDir::homePath()).arg(QLatin1String("index.html"));
66 KCmdLineArgs::init(argc, argv, "testunity", "testunity",
67 "unity testcase app", "0.1");
68 KCmdLineArgs::addCmdLineOptions(options);
70 KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
72 if (args->count() != 0)
75 QApplication app(argc, argv);
77 const QStringList args = app.arguments();
83 QBoxLayout *l = new QVBoxLayout(&topLevel);
85 // Initialize WebCore in Qt platform mode...
86 Page* page = new Page(new ChromeClientQt(), new ContextMenuClientQt());
87 Frame* frame = new FrameQt(page, 0, new FrameQtClientDefault());
89 FrameView* frameView = new FrameView(frame);
90 frame->setView(frameView);
91 frameView->setParentWidget(&topLevel);
93 l->addWidget(frame->view()->qwidget());
95 frame->view()->qwidget()->show();
99 QtFrame(frame)->client()->openURL(KURL(url.toLatin1()));