Hi,

this was my problem when starting too. I have Windows and Linux and cygwin
under Windows doesn't work well for me (because I have installed some other
dev tools and there was for example conflicting make).

My solution is one makefile for everything in qooxdoo without themes and
icons. The full qooxdoo build with some debug info is 950KB that's
acceptable for me.

I'm doing this, because I'm using qooxdoo for admin interface of our
application and there are 'modules', so I need everything that these modules
can use.

I'm thinking to create some pages about qooxdoo where I will upload this
starting stuff and some group of controls I'm developed, but I haven't so
much time to public this stuff:)

2008/6/19 Alexander Back <[EMAIL PROTECTED]>:

> Hi Jhonny,
>
> to create an own application you could use a skeleton as a template for
> your own application. See the documentation
> http://qooxdoo.org/documentation/0.7/skeleton for further details. This
> is also a good start point for gaining knowledge about developing
> applications with qooxdoo.
>
> By using the skeleton structure you can use the powerful tool chain of
> qooxdoo. The build process generates a javascript file with every class
> your application needs. You do not have to worry about any missing
> classes. It's all done for you automagically ;)
>
> cheers,
>   Alex
>
> jhonny thio wrote:
> > Hi...
> > For using qooxdoo, I usually use the qx.js from the qooxdoo
> sdk\Quickstart.
> >
> > Example :
> > I have folder = D:\Qooxdoo
> > Then I put the qx.js in folder D:\Qooxdoo\Script
> > Then I make index.html in folder D:\Qooxdoo.
> > The content of index.html :
> >
> > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "
> http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
> > <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
> > <head>
> >   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
> >   <title>Quickstart</title>
> >
> >   <!-- Use settings to configure application -->
> >   <script type="text/javascript">
> >     qxsettings = { "qx.application" : "Application" };
> >   </script>
> >
> >   <!-- Include compiled qooxdoo -->
> >   <script type="text/javascript" src="script/qx.js"></script>
> >
> >   <!-- Add your own classes here -->
> >   <script type="text/javascript">
> >
> >     qx.Class.define("Application",
> >     {
> >       extend : qx.application.Standalone,
> >
> >       members :
> >       {
> >             main : function()
> >             {
> >               // Call super class
> >               this.base(arguments);
> >
> >               // Create button
> >               var button1 = new qx.ui.form.Button("First Button",
> "./button.png");
> >
> >               // Add button to document with coordinates
> >               this.getRoot().add(button1, {
> >                 left : 50,
> >                 top : 50
> >               });
> >
> >               // Add an event listener
> >               button1.addListener("execute", function(e) {
> >                 alert("Hello World!");
> >               });
> >             }
> >           }
> >         });
> >
> >   </script>
> > </head>
> > </html>
> >
> >
> > The problem is the qx.js from quickstart is not complete, there are some
> class that not in there..
> >
> >>From where I can get the *.js that contains all class in qooxdoo (The
> complete version)?
> > And please tell me the right step for start using qooxdoo.
> >
> > Thank you very much
> >
> >
> >
> >
> >
> > ------------------------------------------------------------------------
> >
> > -------------------------------------------------------------------------
> > Check out the new SourceForge.net Marketplace.
> > It's the best place to buy or sell services for
> > just about anything Open Source.
> > http://sourceforge.net/services/buy/index.php
> >
> >
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > qooxdoo-devel mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
> -------------------------------------------------------------------------
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to