/usr/lib/Wt/examples/dialog/DialogExample.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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | /*
* Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#include <iostream>
#include <Wt/WApplication>
#include <Wt/WBreak>
#include <Wt/WContainerWidget>
#include <Wt/WEnvironment>
#include <Wt/WLineEdit>
#include <Wt/WMessageBox>
#include <Wt/WPushButton>
#include <Wt/WText>
#include "DialogExample.h"
using namespace Wt;
DialogExample::DialogExample(const WEnvironment& env)
: WApplication(env),
messageBox_(0)
{
setTitle("Dialog example");
WContainerWidget *textdiv = new WContainerWidget(root());
textdiv->setStyleClass("text");
new WText("<h2>Wt dialogs example</h2>", textdiv);
new WText("You can use WMessageBox for simple modal dialog boxes. <br />",
textdiv);
WContainerWidget *buttons = new WContainerWidget(root());
buttons->setStyleClass("buttons");
WPushButton *button;
button = new WPushButton("One liner", buttons);
button->clicked().connect(this, &DialogExample::messageBox1);
button = new WPushButton("Comfortable ?", buttons);
button->clicked().connect(this, &DialogExample::messageBox2);
button = new WPushButton("Havoc!", buttons);
button->clicked().connect(this, &DialogExample::messageBox3);
button = new WPushButton("Discard", buttons);
button->clicked().connect(this, &DialogExample::messageBox4);
button = new WPushButton("Familiar", buttons);
button->clicked().connect(this, &DialogExample::custom);
textdiv = new WContainerWidget(root());
textdiv->setStyleClass("text");
status_ = new WText("Go ahead...", textdiv);
styleSheet().addRule(".buttons",
"padding: 5px;");
styleSheet().addRule(".buttons BUTTON",
"padding-left: 4px; padding-right: 4px;"
"margin-top: 4px; display: block");
// avoid scrollbar problems
styleSheet().addRule(".text", "padding: 4px 8px");
styleSheet().addRule("body", "margin: 0px;");
}
void DialogExample::messageBox1()
{
WMessageBox::show("Information",
"Enjoy displaying messages with a one-liner.", Ok);
setStatus("Ok'ed");
}
void DialogExample::messageBox2()
{
messageBox_
= new WMessageBox("Question",
"Are you getting comfortable ?",
NoIcon, Yes | No | Cancel);
messageBox_
->buttonClicked().connect(this, &DialogExample::messageBoxDone);
messageBox_->animateShow
(WAnimation(WAnimation::Pop | WAnimation::Fade, WAnimation::Linear, 250));
}
void DialogExample::messageBox3()
{
StandardButton
result = WMessageBox::show("Confirm", "About to wreak havoc... Continue ?",
Ok | Cancel,
WAnimation(WAnimation::SlideInFromTop));
if (result == Ok)
setStatus("Wreaking havoc.");
else
setStatus("Cancelled!");
}
void DialogExample::messageBox4()
{
messageBox_
= new WMessageBox("Your work",
"Your work is not saved",
NoIcon, NoButton);
messageBox_->addButton("Cancel modifications", Ok);
messageBox_->addButton("Continue modifying work", Cancel);
messageBox_
->buttonClicked().connect(this, &DialogExample::messageBoxDone);
messageBox_->setOffsets(0, Bottom);
messageBox_->animateShow
(WAnimation(WAnimation::SlideInFromBottom
| WAnimation::Fade, WAnimation::Linear, 250));
}
void DialogExample::messageBoxDone(StandardButton result)
{
switch (result) {
case Ok:
setStatus("Ok'ed"); break;
case Cancel:
setStatus("Cancelled!"); break;
case Yes:
setStatus("Me too!"); break;
case No:
setStatus("Me neither!"); break;
default:
setStatus("Unkonwn result?");
}
delete messageBox_;
messageBox_ = 0;
}
void DialogExample::custom()
{
WDialog dialog("Personalia");
dialog.setClosable(true);
dialog.setResizable(true);
new WText("Enter your name: ", dialog.contents());
WLineEdit edit(dialog.contents());
new WBreak(dialog.contents());
WPushButton ok("Ok", dialog.contents());
edit.setFocus();
edit.enterPressed().connect(&dialog, &WDialog::accept);
ok.clicked().connect(&dialog, &WDialog::accept);
if (dialog.exec() == WDialog::Accepted) {
setStatus("Welcome, " + edit.text());
}
}
void DialogExample::setStatus(const WString& result)
{
status_->setText(result);
}
WApplication *createApplication(const WEnvironment& env)
{
return new DialogExample(env);
}
int main(int argc, char **argv)
{
return WRun(argc, argv, &createApplication);
}
|