Hi Jhonny, alot of questions at once. It might be helpful for you to browse the mailing-list's archive via Nabble: http://www.nabble.com/qooxdoo-f3821.html
> 1. yourWindow._closeButton > i want to ask, from where you can know that yourWindow can > tranform to _closeButton. > I mean, can you tell me where i can see the other object that > yourWindow can transform to be. > I have looked at APIViewer, but i dont found it. What exactly do you mean by "transform"? _closeButton is an instance-variable of the Window-class. Your plans of creating a desktop-like environment is not a piece of cake and I heavily encourage you to have a look at qooxdoo's code in detail. So check out the qooxdoo sources from SVN and have a look at the excellent implementation of the framework-classes. > > 2. If i want to make Application that have desktop, the desktop is > like desktop in windows, what component from qooxdoo i must use if > i want to make the icon? Remember that the icon can have image, name, > can be dragged, can be moved...Like the icon in Windows desktop... Use qx.ui.basic.Atom, it provides an image and a label. > > 3. Does Qooxdoo have component for download and upload file? if yes, > Where? i dont found it in APIViewer. If must download, where i should > download it? And how the user manual? There's another SVN repository for qooxdoo contributions. You'll find an upload-widget there. > > 4. What component for making application like DOS prompt or Shell in > Linux? Notice that the application always read what we write and do it > after we press enter button. How to take the command line? qx.ui.form.TextArea? > > 5. I want to make text editor. But i have no idea with "find" and > "replace" method. Find for find all of words that we entry then > replace that words with new word. How i can read each word and how i > blocked that word in my text editor then replace it? You should rather start simple :-) and get the basic desktop running first. When it comes to find-/replace-stuff you should make yourself familiar with JavaScript's string methods and regular expressions. cheers, Lothar > > Thanks, > > Jhonny > > > ----- Original Message ---- > From: Lothar Kaiser <[EMAIL PROTECTED]> > To: qooxdoo Development <[email protected]> > Sent: Friday, January 18, 2008 2:24:24 PM > Subject: Re: [qooxdoo-devel] Qooxdoo, Please help me > > Hi, > > oh you mean closing a qx.ui.window.Window. I can think of two > possibilities: > > 1. Directly attach another eventhandler to the close-button: > > yourWindow._closeButton.addEventListener("execute", function(e){ > this.info <http://this.info>("Who wants to live forever?"); > }, this); > > 2. You could subclass Window and overwrite > the _onclosebuttonclick-method, but make sure you call the superclass' > implementation from within your own implementation. > > I'm pretty sure there are even more ways to do it.. > > cheers, > Lothar > > > Am 18.01.2008 um 04:32 schrieb jhonny thio: > >> Hi Lothar, >> i dont need the command for close window, but i just want to know, >> what EVENT that called when we push the icon at right top of the >> window component : >> 1. Minimize >> 2. Maximize >> 3. Close ( X ) >> >> i have tried for close icon. If we use event "onclose", this event is >> called when the window is minimized too. >> "disappear" event has same effect with "onclose" too. Can you help me? >> >> Thanks, >> >> Jhonny >> >> >> ----- Original Message ---- >> From: Lothar Kaiser <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> >> To: qooxdoo Development <[email protected] >> <mailto:[email protected]>> >> Sent: Friday, January 18, 2008 1:26:58 AM >> Subject: Re: [qooxdoo-devel] Qooxdoo, Please help me >> >> Hi Jhonny, >> >> have a look at the API at: >> >> http://demo.qooxdoo.org/current/apiviewer/#qx.application.Gui >> >> Method close() is what you are looking for. >> >> cheers, >> Lothar >> >> >> Am 17.01.2008 um 17:14 schrieb jhonny thio: >> >>> hi, my name is Jhonny...i have founded that no event can handle >>> window when the >>> window is closed...if i use event "disappear", this event will >>> called when i >>> minimize the window too....i only want an event that called when i >>> close the >>> window..can help me? Thanks >>> >>> i also want ask, can qooxdoo component make the application like >>> there in www.youos.com <http://www.youos.com>? >>> i ask this because i have an project that make an application like >>> youos.com <http://youos.com> and now i confused what ajax i must >>> use. can qooxdoo finish it? thanks >>> >>> ------------------------------------------------------------------------ >>> Be a better friend, newshound, and know-it-all with Yahoo! Mobile. >>> Try it now. >>> <http://us.rd.yahoo.com/evt=51733/*http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ%20> >>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net <http://SF.net> email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ >>> qooxdoo-devel mailing list >>> [email protected] >>> <mailto:[email protected]> >>> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel >> >> >> >> ------------------------------------------------------------------------ >> Looking for last minute shopping deals? Find them fast with Yahoo! >> Search. >> <http://us.rd.yahoo.com/evt=51734/*http://tools.search.yahoo.com/newsearch/category.php?category=shopping> >> >> >> ------------------------------------------------------------------------- >> This SF.net <http://SF.net> email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ >> qooxdoo-devel mailing list >> [email protected] >> <mailto:[email protected]> >> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > > > > ------------------------------------------------------------------------ > Never miss a thing. Make Yahoo your homepage. > <http://us.rd.yahoo.com/evt=51438/*http://www.yahoo.com/r/hs> > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > ------------------------------------------------------------------------ > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > -- Lothar Kaiser Webdeveloper GMX GmbH Frankfurter Ring 129, D - 80807 München Amtsgericht München HRB 144261 Geschäftsführer: Eva Heil, Achim Weiss Telefon +49 89 14 339-599 ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
