/* ************************************************************************

   Copyright:

   License:

   Authors:

************************************************************************ */

/**
 * Your application
 */
qx.OO.defineClass("Application", qx.component.AbstractApplication, function() {
  qx.component.AbstractApplication.call(this);
});

qx.Proto.main = function(e)
{
  // Create button
  var button1 = new qx.ui.form.Button("Welcome to qooxdoo!", "./button.png");

  // Set button location
  button1.setTop(50);
  button1.setLeft(50);

  // Add button to document
  button1.addToDocument();

  // Add an event listener
  button1.addEventListener("execute", function(e) {
    alert("Hello World!");
  });
};

