Re: [fpc-pascal] Something like g_object_get() in Pascal?

2010-08-02 Thread Jonas Maebe
On 01 Aug 2010, at 14:45, Matthias Klumpp wrote: I have a record containing a set of variables. This record should now be accessed from an application developed in C (through a shared library). Because Pascal records are incompatible with C structs If you use {$packrecords c}, then record

Re: [fpc-pascal] Something like g_object_get() in Pascal?

2010-08-02 Thread Felipe Monteiro de Carvalho
On Sun, Aug 1, 2010 at 2:45 PM, Matthias Klumpp wrote: > Is there a possibility to get the same function in Pascal to? That I just > define one get_value() function which receives the property name as string > and outputs the value of it? I don't know about getting the value of a property, but yo

Re: [fpc-pascal] Property Tags

2010-08-02 Thread leledumbo
> 1 - How to simulate multiple inheritance ? Is there an alternative way > (Some other techniques, like interfaces etc) ? Err... we have interfaces since version 1.1. Check http://freepascal.org/docs-html/ref/refch7.html#x84-920007 this out. -- View this message in context: http://old.nabble

[fpc-pascal] textmode ide configuration

2010-08-02 Thread Bernd Kreuss
Hi, quick question: where does the textmode IDE store its configuration? It seems I have messed up something but I cant find any configuration at the obvious places where I would expect them. The following are the places I would intuitively look for a config file /etc/fp.cfg (or something starti

Re: [fpc-pascal] textmode ide configuration

2010-08-02 Thread david adam
On 08/02/2010 07:17 AM, Bernd Kreuss wrote: Hi, quick question: where does the textmode IDE store its configuration? It seems I have messed up something but I cant find any configuration at the obvious places where I would expect them. The following are the places I would intuitively look for a

Re: [fpc-pascal] textmode ide configuration

2010-08-02 Thread Jonas Maebe
On 02 Aug 2010, at 16:17, Bernd Kreuss wrote: quick question: where does the textmode IDE store its configuration? I think that by default it stores them in the current directory (to support different configuration files for different "projects".) The names are fp.ini, fp.cfg and fp.dsk

Re: [fpc-pascal] textmode ide configuration

2010-08-02 Thread Marco van de Voort
In our previous episode, Jonas Maebe said: > > quick question: where does the textmode IDE store its configuration? > > I think that by default it stores them in the current directory (to > support different configuration files for different "projects".) The > names are fp.ini, fp.cfg and fp.d

Re: [fpc-pascal] textmode ide configuration

2010-08-02 Thread Bernd Kreuss
On 02.08.2010 16:30, Marco van de Voort wrote: > In our previous episode, Jonas Maebe said: >>> quick question: where does the textmode IDE store its configuration? >> >> I think that by default it stores them in the current directory (to >> support different configuration files for different "pr

[fpc-pascal] fpGUI Toolkit v0.7 (final release) for FPC 2.4

2010-08-02 Thread Graeme Geldenhuys
fpGUI v0.7 is finally available --- This was a long wait since the previous v0.6 release, but v0.7 is well with it with loads of new features and tools. An archived source download can be found at the following URL, or the source code could be pulled directly from th

Re: [fpc-pascal] Property Tags

2010-08-02 Thread Jorge Aldo G. de F. Junior
and what about property tags and dynamic dispatch ? this would solve a lot of problems of my project... (i'm reading about multiple inheritance and looks like it creates more problems than it solves...) on the other way looks like interfaces would make things more complex... its there any techn