1 // vim: set expandtab tabstop=4 shiftwidth=4:
3 #ifndef BIFE_FALLBACK_H
4 #define BIFE_FALLBACK_H
18 * Base Fallback Widget.
22 class Fallback: public Container {
33 * @param name Name of the widget.
35 Fallback(const string&);
40 * @param name Name of the widget.
41 * @param attrs Widget attributes.
43 Fallback(const string&, const Hash&);
48 * @param name Name of the widget.
49 * @param attrs Widget attributes.
50 * @param content Content of the widget.
52 Fallback(const string&, const Hash&, Widget&);
57 * @param name Name of the widget.
58 * @param content Content of the widget.
60 Fallback(const string&, Widget&);
65 * @param name Name of the widget.
66 * @param content Content of the widget.
67 * @param attrs Widget attributes.
69 Fallback(const string&, Widget&, const Hash&);
74 virtual ~Fallback(void);