summaryrefslogtreecommitdiffstats
path: root/qx08/source/class/tr/ui/Footer.js
blob: 6b77aa334ea327b51c0fc5df6a894fa24fa0b183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************
#module(Tr)
************************************************************************ */

/**
 * a widget showing the footer
 */
qx.Class.define('tr.ui.Footer', {
    extend : qx.ui.container.Composite,




    /*
                *****************************************************************************
                   CONSTRUCTOR
                *****************************************************************************
                */

    construct : function(text, url) {
        this.base(arguments, new qx.ui.layout.HBox().set({ alignX : 'right' }));
        this.add(new tr.ui.Link(text, url, '#888', '10px sans-serif'));
    }
});