summaryrefslogtreecommitdiffstats
path: root/qx08/source/class/tr/ui/Footer.js
blob: 4e2a2d2b40afc9f4d35670a8d3de804df1e914b6 (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'));
    }
});