Re: [Pharo-users] Spec vs Brick vs Glamour vs Morphic vs WTF?

2016-07-08 Thread Stephan Eggermont
You can find it on smalltalkhub StephanEggermont/SpecGenerator. In Pharo4 you'll miss spec updates, you'll need to add at least the FastTable based list and the SelectEntity widget. Code generation is straightforward, and should be refactored Stephan Verstuurd vanaf mijn iPhone

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Merwan Ouddane
Yes I did. Have you tried on windows ? Merwan On 08/07/2016 21:20, Esteban Lorenzano wrote: it works fine for me: Struct>>b "This method was automatically generated" ^Enum fromInteger: (handle unsignedLongAt: 5) Struct>>b: anObject "This method was automatically generated" handle unsignedLon

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Esteban Lorenzano
it works fine for me: Struct>>b "This method was automatically generated" ^Enum fromInteger: (handle unsignedLongAt: 5) Struct>>b: anObject "This method was automatically generated" handle unsignedLongAt: 5 put: anObject value Struct>>c "This method was a

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Merwan Ouddane
Struct >> fieldsDesc ^#( void* a; Enum b; Enum c; ) Enum >> enumDecl ^ #( TEST 1 ) I joined a .st with the struct and the enum, the package name is FFITest. Merwan On 08/07/2016 20:14, Esteban Lorenzano wrote: that still does not helps… show me the code! Esteban On 08 Ju

Re: [Pharo-users] Database band reports...

2016-07-08 Thread anonyme
Ok, thanks you for responses. A band report is more than a PDF generator... It's a queries manager with varaible management facilities : details queries connect to master query, and you can manage sub report bottlenek into other master reports. The band report generator has the ability to manag

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Esteban Lorenzano
that still does not helps… show me the code! Esteban > On 08 Jul 2016, at 20:09, Merwan Ouddane wrote: > > Sorry not unsigned longs but enumerations > > On Fri, Jul 8, 2016 at 10:09 AM, Esteban Lorenzano > wrote: > how do you declare this? > >> On 08 Jul 2016, at

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Merwan Ouddane
Sorry not unsigned longs but enumerations On Fri, Jul 8, 2016 at 10:09 AM, Esteban Lorenzano wrote: > how do you declare this? > > On 08 Jul 2016, at 10:01, Merwan Ouddane wrote: > > I spoke too fast ^^' > > struct Test { > void * ptr; > insigned long i; > insigned long j; > } > > Real si

Re: [Pharo-users] Database band reports...

2016-07-08 Thread Ben Coman
On Fri, Jul 8, 2016 at 5:45 PM, stepharo wrote: > Hi patrick > > What is a band report? http://webhelp.evisions.com/HelpFiles/Argos/4.2/en/Content/10101001.html Sorry Patrick. Pharo has such a GUI report generator. But Artefact seems to provide similar features via code... https://ci.inria.fr/

Re: [Pharo-users] Spec vs Brick vs Glamour vs Morphic vs WTF?

2016-07-08 Thread Brad Selfridge
Stephan, I watched your video. Very cool. I'm really interested in you code generation process. What I'm working on will also require generating Smalltalk classes and methods from a Spec GUI. I do not want to auto-generate a GUI, but non-GUI classes only. It would be nice not to have to reinvent

Re: [Pharo-users] Database band reports...

2016-07-08 Thread stepharo
Hi patrick What is a band report? Did you check Artefact because you can generate pdf with Artefact. Stef Hi, My previous message stayed without responses, so I published it agin... I'm looking for a database band report component. The goal is to build quickly a PDF report from SQL requests

Re: [Pharo-users] How do I debug: "There was an error while trying to install GitFileTree. Installation was cancelled." from Catalog Browser

2016-07-08 Thread stepharo
the problem is that for the shortcut we could to a spy in the menu. For other actions were we do not have double ways to access them this is difficult to explain to the user how to do something without being far too much boring for the one knowing. Stef Le 7/7/16 à 01:58, Ben Coman a écr

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Esteban Lorenzano
how do you declare this? > On 08 Jul 2016, at 10:01, Merwan Ouddane wrote: > > I spoke too fast ^^' > > struct Test { > void * ptr; > insigned long i; > insigned long j; > } > > Real size is 12, UFFI counts 24 > > Merwan > > > Le 7 juil. 2016 10:02, "Merwan Ouddane"

Re: [Pharo-users] [UFFI] Using a nested structure

2016-07-08 Thread Merwan Ouddane
I spoke too fast ^^' struct Test { void * ptr; insigned long i; insigned long j; } Real size is 12, UFFI counts 24 Merwan Le 7 juil. 2016 10:02, "Merwan Ouddane" a écrit : > Now it is working, thank you :) > > On Thu, Jul 7, 2016 at 8:42 AM, Esteban Lorenzano > wrote: > >> Hi, >> >> >

[Pharo-users] Database band reports...

2016-07-08 Thread patrick71
Hi, My previous message stayed without responses, so I published it agin... I'm looking for a database band report component. The goal is to build quickly a PDF report from SQL requests. An exemple is Lazreport, this is a tutorial . -- V