1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // 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 DIALOG_EXAMPLE_H_
- #define DIALOG_EXAMPLE_H_
- #include <Wt/WApplication>
- #include <Wt/WMessageBox>
- using namespace Wt;
- /**
- * \defgroup dialog Dialog example
- */
- /*@{*/
- /*! \brief An example illustrating usage of Dialogs
- */
- class DialogExample : public WApplication
- {
- public:
- /*! \brief Create the example application.
- */
- DialogExample(const WEnvironment& env);
- private:
- void messageBox1();
- void messageBox2();
- void messageBox3();
- void messageBox4();
- void custom();
- void messageBoxDone(StandardButton result);
- void setStatus(const WString& text);
- WMessageBox *messageBox_;
- WText *status_;
- };
- /*@}*/
- #endif // DIALOGEXAMPLE_H_
|