diff options
Diffstat (limited to 'qooxdoo/source/class/Tr/ui/Footer.js')
-rw-r--r-- | qooxdoo/source/class/Tr/ui/Footer.js | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/qooxdoo/source/class/Tr/ui/Footer.js b/qooxdoo/source/class/Tr/ui/Footer.js deleted file mode 100644 index 1882043..0000000 --- a/qooxdoo/source/class/Tr/ui/Footer.js +++ /dev/null @@ -1,45 +0,0 @@ -/* ************************************************************************ -#module(Tr) -************************************************************************ */ - -/** - * a widget showing the footer - */ - -qx.Class.define('Tr.ui.Footer', -{ - extend: qx.ui.layout.HorizontalBoxLayout, - - /* - ***************************************************************************** - CONSTRUCTOR - ***************************************************************************** - */ - - construct: function (text,url) { - this.base(arguments); - this.set({ - horizontalChildrenAlign: 'right', - height: 'auto' - }); - var logo = new qx.ui.form.Button(text); - logo.set({ - textColor: '#b0b0b0', - backgroundColor: null, - font: qx.ui.core.Font.fromString('10px sans-serif'), - border: null - }); - - logo.addEventListener('execute', function(e){ - var w = new qx.client.NativeWindow(url); - w.set({ - width: 1000, - height: 800 - }); - w.open() - }); - this.add(logo); - } -}); - - |