[fpc-pascal]GTK: multiline label

2003-10-09 Thread Peter Huesser
Hello How ist possible to make initialize in fpc a multiline label. Something like Lbl := gtk_label_new('Line1 \n Line2'); I guess but with what do I have to replace the \n ? Thank's for any help Pedro ___ fpc-pascal maillist - [EMAIL

AW: [fpc-pascal]GTK: multiline label

2003-10-09 Thread ZINTEL Gerhard
How ist possible to make initialize in fpc a multiline label. Something like Lbl := gtk_label_new('Line1 \n Line2'); I guess but with what do I have to replace the \n ? Thank's for any help Pedro one possibility is: Lbl := gtk_label_new('Line1 '#10' Line2'); //

Re: [fpc-pascal]GTK: multiline label

2003-10-09 Thread Olaf Leidinger
Hello! How ist possible to make initialize in fpc a multiline label. Something like Lbl := gtk_label_new('Line1 \n Line2'); I did't test it, but something like this should work: Lbl := gtk_label_new('Line1 ' + #10 + ' Line2'); Ciao, Olaf

[fpc-pascal]GTK2: GTKArrowType

2003-10-09 Thread Peter Huesser
Hello Is the GTKArrowType not implemented yet in the GTK2 (Version 1.0.5). If not: is there a list what is allready implemented in GTK2 and what not ? Thank's Pedro ___ fpc-pascal maillist - [EMAIL PROTECTED]

Re: [fpc-pascal]GTK: multiline label

2003-10-09 Thread Michael Weinert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Donnerstag, 9. Oktober 2003 09:18 schrieb Peter Huesser: Hi, How ist possible to make initialize in fpc a multiline label. Something like Lbl := gtk_label_new('Line1 \n Line2'); I guess but with what do I have to replace the \n ? This

Re: [fpc-pascal]GTK: multiline label

2003-10-09 Thread Peter Huesser
Thank's for the answer. Both solutions work. Pedro ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]GTK: multiline label

2003-10-09 Thread Gene Buckle
Hello How ist possible to make initialize in fpc a multiline label. Something like Lbl := gtk_label_new('Line1 \n Line2'); I guess but with what do I have to replace the \n ? Thank's for any help Would gtk_label_new('Line1' + #13 + 'Line2'); work? g.

Re: [fpc-pascal]GTK: multiline label

2003-10-09 Thread James Mills
On Thu, Oct 09, 2003 at 06:59:41AM -0700, Gene Buckle wrote: Hello How ist possible to make initialize in fpc a multiline label. Something like Lbl := gtk_label_new('Line1 \n Line2'); I guess but with what do I have to replace the \n ? Thank's for any help Would