/usr/include/Wt/WMessageBox is in libwt-dev 3.3.3+dfsg-4.1.
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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | // This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef WMESSAGEBOX_
#define WMESSAGEBOX_
#include <Wt/WDialog>
#include <Wt/WSignalMapper>
namespace Wt {
class WContainerWidget;
class WImage;
class WPushButton;
class WText;
/*! \class WMessageBox Wt/WMessageBox Wt/WMessageBox
* \brief A standard dialog for confirmation or to get simple user input
*
* The messagebox shows a message in a dialog window, with a number
* of buttons. These buttons may be standard buttons, or customized.
*
* A messagebox is (usually) modal, and can be instantiated
* synchronously or asynchronously.
*
* When using a messagebox asynchronously, there is no API call that
* waits for the messagebox to be processed. Instead, the usage is
* similar to instantiating a WDialog (or any other widget). You need
* to connect to the buttonClicked() signal to interpret the result and
* delete the message box.
*
* The synchronous use of a messagebox involves the use of the static
* show() method, which blocks the current thread until the user has
* processed the messabebox. Since this uses the WDialog::exec(), it
* suffers from the same scalability issues. See documentation of
* WDialog for more details.
*
* \if cpp
* Example code (using the exec() method, not recommended):
* \code
* StandardButton
* result = WMessageBox::show("Confirm", "About to wreak havoc... Continue ?",
* Ok | Cancel);
* \endcode
* \endif
*
* This will show a message box that looks like this:
*
* <TABLE border="0" align="center"> <TR> <TD>
* \image html WMessageBox-default-1.png "Example of a WMessageBox (default)"
* </TD> <TD>
* \image html WMessageBox-polished-1.png "Example of a WMessageBox (polished)"
* </TD> </TR> </TABLE>
*
* <h3>i18n</h3>
*
* The strings used in the WMessageBox buttons can be translated by overriding
* the default values for the following localization keys:
* - Wt.WMessageBox.Abort: Abort
* - Wt.WMessageBox.Cancel: Cancel
* - Wt.WMessageBox.Ignore: Ignore
* - Wt.WMessageBox.No: No
* - Wt.WMessageBox.NoToAll: No to All
* - Wt.WMessageBox.Ok: Ok
* - Wt.WMessageBox.Retry: Retry
* - Wt.WMessageBox.Yes: Yes
* - Wt.WMessageBox.YesToAll: Yes to All
*/
class WT_API WMessageBox : public WDialog
{
public:
using WDialog::show;
/*! \brief Creates an empty message box.
*/
WMessageBox(WObject *parent = 0);
/*! \brief Creates a message box with given caption, text, icon, and
* buttons.
*/
WMessageBox(const WString& caption, const WString& text, Icon icon,
WFlags<StandardButton> buttons, WObject *parent = 0);
/*! \brief Sets the text for the message box.
*/
void setText(const WString& text);
/*! \brief Returns the message box text.
*/
const WString& text() const;
/*! \brief Returns the text widget.
*
* This may be useful to customize the style or layout of the displayed
* text.
*/
WText *textWidget() const { return text_; }
/*! \brief Sets the icon.
*/
void setIcon(Icon icon);
/*! \brief Returns the icon.
*/
Icon icon() const { return icon_; }
/*! \brief Adds a custom button.
*
* When the button is clicked, the associated result will be returned.
*/
void addButton(WPushButton *button, StandardButton result);
/*! \brief Adds a custom button with given text.
*
* When the button is clicked, the associated result will be returned.
*/
WPushButton *addButton(const WString& text, StandardButton result);
/*! \brief Adds a standard button.
*/
WPushButton *addButton(StandardButton result);
/*! \brief Sets standard buttons for the message box (<b>deprecated</b>).
*
* \deprecated this method has been renamed to setStandardButtons().
*/
void setButtons(WFlags<StandardButton> buttons);
/*! \brief Sets standard buttons for the message box.
*/
void setStandardButtons(WFlags<StandardButton> buttons);
/*! \brief Returns the standard buttons.
*
* \sa setStandardButtons(), addButton()
*/
WFlags<StandardButton> standardButtons() const;
/*! \brief Returns the buttons.
*
* \note buttons() returning WFlags<StandardButton> has been renamed
* to standardButtons() in %Wt 3.3.1
*/
std::vector<WPushButton *> buttons() const;
/*! \brief Returns the button widget for the given standard button.
*
* Returns \c 0 if the button isn't in the message box.
*
* This may be useful to customize the style or layout of the button.
*/
WPushButton *button(StandardButton button);
/*! \brief Sets the button as the default button.
*
* The default button is pressed when the user presses enter. Only one
* button can be the default button.
*
* If no default button is set, %Wt will take a button that is associated
* with a Wt::Ok or Wt::Yes result.
*/
void setDefaultButton(WPushButton *button);
/*! \brief Sets the button as the default button.
*
* The default button is pressed when the user presses enter. Only one
* button can be the default button.
*
* The default value is 0 (no default button).
*/
void setDefaultButton(StandardButton button);
/*! \brief Returns the default button.
*
* \sa setDefaultButton()
*/
WPushButton *defaultButton() const { return defaultButton_; }
/*! \brief Sets the escape button.
*
* The escape button is pressed when the user presses escapes.
*
* If no escape button is set, %Wt will take a button that is associated
* with a Wt::Cancel or Wt::No result.
*/
void setEscapeButton(WPushButton *button);
/*! \brief Sets the escape button.
*
* The escape button is pressed when the user presses escapes.
*
* If no escape button is set, %Wt will take a button that is associated
* with a Wt::Cancel or Wt::No result.
*/
void setEscapeButton(StandardButton button);
/*! \brief Returns the escape button.
*
* \sa setEscapeButton()
*/
WPushButton *escapeButton() const { return escapeButton_; }
/*! \brief Returns the result of this message box.
*
* This value is only defined after the dialog is finished.
*/
StandardButton buttonResult() { return result_; }
/*! \brief Convenience method to show a message box, blocking the current
* thread.
*
* Show a message box, blocking the current thread until the message box
* is closed, and return the result. The use of this method is not
* recommended since it uses WDialog::exec(). See documentation of
* WDialog for detailed information.
*
* \if java
* <i>This functionality is only available on Servlet 3.0 compatible
* servlet containers.</i>
* \endif
*/
static StandardButton show(const WString& caption,
const WString& text,
WFlags<StandardButton> buttons,
const WAnimation& animation = WAnimation());
/*! \brief %Signal emitted when a button is clicked.
*/
Signal<StandardButton>& buttonClicked() { return buttonClicked_; }
virtual void setHidden(bool hidden,
const WAnimation& animation = WAnimation());
private:
struct Button {
WPushButton *button;
StandardButton result;
};
std::vector<Button> buttons_;
Icon icon_;
StandardButton result_;
Signal<StandardButton> buttonClicked_;
WPushButton *defaultButton_, *escapeButton_;
WText *text_;
WIcon *iconW_;
WSignalMapper<StandardButton, NoClass> *buttonMapper_;
void create();
void onFinished();
void onButtonClick(StandardButton b);
void mappedButtonClick(StandardButton b);
static StandardButton order_[];
static const char *buttonText_[];
static WString standardButtonText(StandardButton b);
};
}
#endif // WMESSAGEBOX_
|