Wtx ~ Wt Extension Library
WtxLib
ComposeExample.h
1 // This may look like C code, but it's really -*- C++ -*-
2 /*
3  * Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.
4  *
5  * See the LICENSE file for terms of use.
6  */
7 #ifndef COMPOSE_EXAMPLE_H_
8 #define COMPOSE_EXAMPLE_H_
9 
10 #include <Wt/WContainerWidget.h>
11 
12 using namespace Wt;
13 
14 class Composer;
15 
16 namespace Wt {
17  class WTreeNode;
18 }
19 
24 
27 class ComposeExample : public WContainerWidget
28 {
29 public:
33 
34 private:
35  Composer *composer_;
36  WContainerWidget *details_;
37 
38  void send();
39  void discard();
40 };
41 
44 #endif // COMPOSE_EXAMPLE_H_
An E-mail composer widget.
Definition: Composer.h:36
Main widget of the Composer example.