Multiple windows

2006-04-05 Thread Anton Kiland
Hello!I'm building a Jabber.app for GNUstep,since I feel there's something like that missingand I want to learn more about the environment.I have been programming some in cocoa before,but I still can't solve my problem.. How to create multiple instances of a window(not using NSDocument), as in mult

Re: Multiple windows

2006-04-06 Thread Gürkan Sengün
hi you know about Grouch.app? yours, gürkan ___ Gnustep-dev mailing list Gnustep-dev@gnu.org http://lists.gnu.org/mailman/listinfo/gnustep-dev

Re: Multiple windows

2006-04-07 Thread Anton Kiland
No, I haven't. I will check it out as soon as I can.Still, I need an answer to my question, though, sinceit will be needed for other projects.So, how to show multiple instances of the same windowwithout using NSDocument? Cheers,  Anton.On 4/6/06, Gürkan Sengün <[EMAIL PROTECTED]> wrote: hiyou know

Re: Multiple windows

2006-04-07 Thread Adam Fedor
On 2006-04-07 11:39:43 -0600 Anton Kiland <[EMAIL PROTECTED]> wrote: No, I haven't. I will check it out as soon as I can. Still, I need an answer to my question, though, since it will be needed for other projects. So, how to show multiple instances of the same window without using NSDocument?

Re: Multiple windows

2006-04-07 Thread Günther Noack
Hi! Am 07.04.2006 um 20:02 schrieb Adam Fedor: If it's a simple window, you could just create it programatically: w1 = [[NSWindow alloc] initWithFrame:...] I found this article that talks (amongst other topics) about Nib file instantiation quite useful. -Günther