/usr/lib/Wt/examples/wt-homepage/JWtHome.C is in witty-examples 3.3.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
* Copyright (C) 2009 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#include "JWtHome.h"
#ifdef WT_EMWEB_BUILD
#include "QuoteForm.h"
#endif // WT_EMWEB_BUILD
#include <Wt/WText>
#include <Wt/WAnchor>
#include <Wt/WStackedWidget>
#include <Wt/WTreeNode>
#include <Wt/WWidget>
#include <Wt/WViewWidget>
#include <Wt/WTabWidget>
#include <Wt/WMenuItem>
#include <Wt/WTable>
#include <Wt/WEnvironment>
#include <Wt/WLogger>
#include "ExampleSourceViewer.h"
JWtHome::JWtHome(const WEnvironment& env)
: Home(env,
"JWt, Java Web Toolkit",
"jwt-home", "css/jwt")
{
addLanguage(Lang("en", "/", "en", "English"));
char* jwtExamplePath = getenv("JWT_EXAMPLE_PATH");
if (jwtExamplePath)
jwtExamplePath_ = jwtExamplePath;
else
jwtExamplePath_ = "/home/pieter/projects/jwt/wt-port/java/examples/";
init();
}
WWidget *JWtHome::examples()
{
WContainerWidget *result = new WContainerWidget();
WText *intro = new WText(tr("home.examples"));
intro->setInternalPathEncoding(true);
result->addWidget(intro);
examplesMenu_ = new WTabWidget(result);
WAnimation animation(WAnimation::SlideInFromRight, WAnimation::EaseIn);
examplesMenu_->contentsStack()->setTransitionAnimation(animation, true);
/*
* The following code is functionally equivalent to:
*
* examplesMenu_->addTab(helloWorldExample(), "Hello world");
*
* However, we optimize here for memory consumption (it is a homepage
* after all, and we hope to be slashdotted some day)
*
* Therefore, we wrap all the static content (including the tree
* widgets), into WViewWidgets with static models. In this way the
* widgets are not actually stored in memory on the server.
*/
// The call ->setPathComponent() is to use "/examples/" instead of
// "/examples/hello_world" as internal path
examplesMenu_->addTab(wrapView(&JWtHome::helloWorldExample),
tr("hello-world"))->setPathComponent("");
examplesMenu_->addTab(wrapView(&JWtHome::chartExample),
tr("charts"));
examplesMenu_->addTab(wrapView(&JWtHome::treeviewExample),
tr("treeview"));
examplesMenu_->addTab(wrapView(&JWtHome::composerExample),
tr("mail-composer"));
examplesMenu_->addTab(wrapView(&JWtHome::chatExample),
tr("chat"));
examplesMenu_->addTab(wrapView(&JWtHome::figtreeExample),
tr("figtree"));
examplesMenu_->addTab(wrapView(&JWtHome::widgetGalleryExample),
tr("widget-gallery"));
// Enable internal paths for the example menu
examplesMenu_->setInternalPathEnabled("/examples");
examplesMenu_->currentChanged().connect(this, &Home::googleAnalyticsLogger);
return result;
}
WWidget *JWtHome::createQuoteForm()
{
#ifdef WT_EMWEB_BUILD
return new QuoteForm(QuoteForm::JWt);
#else
return 0;
#endif
}
WWidget *JWtHome::sourceViewer(const std::string &deployPath)
{
return new ExampleSourceViewer(deployPath, jwtExamplePath_ + "/", "JAVA");
}
WWidget *JWtHome::example(const char *textKey, const std::string& sourceDir)
{
WContainerWidget *result = new WContainerWidget();
new WText(tr(textKey), result);
result->addWidget(linkSourceBrowser(sourceDir));
return result;
}
WWidget *JWtHome::helloWorldExample()
{
return example("home.examples.hello", "hello");
}
WWidget *JWtHome::chartExample()
{
return example("home.examples.chart", "charts");
}
WWidget *JWtHome::treeviewExample()
{
return example("home.examples.treeview", "treeviewdragdrop");
}
WWidget *JWtHome::composerExample()
{
return example("home.examples.composer", "composer");
}
WWidget *JWtHome::chatExample()
{
return example("home.examples.chat", "simplechat");
}
WWidget *JWtHome::figtreeExample()
{
WContainerWidget *result = new WContainerWidget();
WText *text = new WText(tr("home.examples.figtree"), result);
text->setInternalPathEncoding(true);
return result;
}
WWidget *JWtHome::widgetGalleryExample()
{
return example("home.examples.widgetgallery", "widgetgallery");
}
WWidget *JWtHome::wrapView(WWidget *(JWtHome::*createWidget)())
{
return makeStaticModel(boost::bind(createWidget, this));
}
WApplication *createJWtHomeApplication(const WEnvironment& env)
{
return new JWtHome(env);
}
|