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 {
25 /// Fallback constructor function prototype.
26 //typedef Fallback* Constructor(const string&, const string&, const Hash&);
38 * @param name Name of the widget.
45 * @param name Name of the widget.
46 * @param attrs Widget attributes.
48 Fallback(const Hash&);
53 * @param name Name of the widget.
54 * @param attrs Widget attributes.
55 * @param content Content of the widget.
57 Fallback(const Hash&, Widget*);
62 * @param name Name of the widget.
63 * @param content Content of the widget.
70 * @param name Name of the widget.
71 * @param content Content of the widget.
72 * @param attrs Widget attributes.
74 Fallback(Widget*, const Hash&);
79 virtual ~Fallback(void);