Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread kilon alios
Καλώς ήρθες στον Φάρο , Στέλιο :) (welcome to pharo stelio) Its great to have another fellow Greek here. I dont know how Seaside works exactly but yes you can generate dynamically hmtl pages. I have only used Amber that also works with Pharo and it has objects to generate html dynamically. Most l

Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread p...@highoctane.be
Hi, Very easy to do. Have a look at http://book.seaside.st You can also load my configuration from http://www.smalltalkhub.com/#!/~philippeback/Hackathon/source This will load the HOWebStack properly, and an app I did for an hackathon. This will give you a sample to work from. There are a bun

Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread kilon alios
is there a pdf I can download ? I would love to take a look at seaside :) On Fri, Nov 22, 2013 at 11:48 AM, p...@highoctane.be wrote: > Hi, > > Very easy to do. > > Have a look at http://book.seaside.st > > You can also load my configuration from > http://www.smalltalkhub.com/#!/~philippeback/Ha

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread prova email
I started to use Spec, i love nested layouts and so on. But i've got a little problem. I'm creating a Window with 14 TextInputFieldModel and 14 ButtonModel and, to avoid the definition of 28 different instance variables (obviously), i created two arrays which contain the ButtonModel and the Text

Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread Bahman Movaqar
On 11/22/2013 13:30, kilon alios wrote: > is there a pdf I can download ? I would love to take a look at seaside :) > This will definitely help you get started: http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial -- Bahman Movaqar (http://BahmanM.com) ERP Evaluation, Implementation & D

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread Benjamin
It seems that you return the wrong object somewhere :) Could you commit your code somewhere so I can have a look ? Ben On 22 Nov 2013, at 11:01, prova email wrote: > I started to use Spec, i love nested layouts and so on. But i've got a little > problem. I'm creating a Window with 14 TextInp

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread prova email
Hi Ben,here the .st file, there are some comments in italian, i hope it's not a problem. I know that Spec is the most used and it will be the standard GUI builders in the future, so i'd like to find a solution here, without changing to Morph and Polymorphic. Paolo From: benjamin.vanryseghem.ph..

Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread kilon alios
thank you both, I love good documentation. On Fri, Nov 22, 2013 at 12:02 PM, Bahman Movaqar wrote: > On 11/22/2013 13:30, kilon alios wrote: > > is there a pdf I can download ? I would love to take a look at seaside :) > > > > This will definitely help you get started: > http://www.hpi.uni-pots

Re: [Pharo-users] [launcher] Re: PharoLauncher howto

2013-11-22 Thread btc
Sean P. DeNigris wrote: btc wrote By 'dig into the core' do you mean you need more than what the 'Enable development environment' setting does to revert fullscreen. Oh, I saw that but didn't know what it did. Very strange... now PharoLauncher no longer opens in #fullscr

Re: [Pharo-users] State of Flamel?

2013-11-22 Thread Stephan Eggermont
The dependency on AST-Core is removed. I guess it makes sense to have a ci build for this. Can I get access to pharo-contributions to create a build? Stephan

Re: [Pharo-users] Spec - Tutorial Series

2013-11-22 Thread Bahman Movaqar
On 11/22/2013 13:51, prova email wrote: > Hi Bahman, > i just finished to read the second Spec Tutorial, great tuto as > always. Only one question: why do you define the defaultSpec in the > Class-side? > I'm glad you found it useful. RE `defaultSpec`, I believe that's the way it is supposed to b

Re: [Pharo-users] Spec - Tutorial Series

2013-11-22 Thread Benjamin
When a Spec UI is build, the spec are looked up on class side. But in some special cases you can provide directly a SpecLayout object to a model. Why on class side? The goal was to have a static description of a widget layout Ben On 22 Nov 2013, at 11:27, Bahman Movaqar wrote: > On 11/22/

Re: [Pharo-users] Cleaning up Voyage Documentation

2013-11-22 Thread Sabine Knöfel
Hi Johann, thanks. I have a working solution for migration and possibly one day I will ask in the mailinglist for a diskussion about this. Regards Sabine On Thu, Nov 21, 2013 at 4:09 PM, Johan Fabry [via Smalltalk] < ml-node+s1294792n4723998...@n4.nabble.com> wrote: > Hi Sabine, > > thank you

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread Stephan Eggermont
Johan wrote: >I recommend you to go with Spec. It is the newest and designed to be the most >capable. It is also the way forward, it will be the 'standard' GUI builders >>in the future. We know that the documentation right now is far from optimal. >Ben and I will work on that in January. I’d r

Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread steliosgan
First of all...Thank you all for the instant response (Ευχαριστώ πατριώτη). I would like more precise directions as I am s new at this. I have the Pharo app, which returns an OrderedCollection. I created a class PrintHtml (inherents from WAComponent) with an instance variable in which I bind th

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread prova email
About Glamour, isn'it used to create Browser? How can i create a typical window? > From: step...@stack.nl > Date: Fri, 22 Nov 2013 12:39:06 +0100 > To: pharo-users@lists.pharo.org > Subject: Re: [Pharo-users] Writing a GUI - Where to start? > > Johan wrote: > >I recommend you to go with Spec. It

[Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread Torsten Bergmann
You can initialize your instance variable in an initialize method WAComponent subclass: #PrintHtml instanceVariableNames: 'tasks' classVariableNames: '' poolDictionaries: '' category: 'KillerApp-Web-UI' Then a method to initialize on the instance side PrintHtml>>

Re: [Pharo-users] How to combine Pharo Desktop and Seaside?

2013-11-22 Thread btc
Hi & welcome. I'm not in a position to help directly, but just suggest that the more specific advice the advice you are seeking, the more use it is to paste here the specific code you have defined and the specific Workspace snippets you are executing. This reduces the chance for misunderstand

Re: [Pharo-users] NativeBoost Questions while wrapping FMOD

2013-11-22 Thread Igor Stasenko
On 22 November 2013 05:09, Sean P. DeNigris wrote: > Igor Stasenko wrote > >> The better way is to subclass from NBExternalObject then > > which made exactly for such purposes, by holding an opaque handle to > > something (you don't care what is inside), and simplifies a lot of > things. > > I ma

Re: [Pharo-users] NativeBoost Questions while wrapping FMOD

2013-11-22 Thread Igor Stasenko
So, here the changes which should work (but i didn't tested). And being on your place, i would get rid of FMOD_SYSTEM class, because you can just subclass FmodSystem from NBExternalObject directly (and use it in signatures) and so it will be holding the handle, and naturally work as a representat

[Pharo-users] [launcher] templates from fixed URLs

2013-11-22 Thread btc
Hi Damien, I like the PhLFixedURLsTemplateGroup you just added to directly reference specific urls like Pharo 3.0 latest. I corrected a problem with Settings. Also I think its useful to be explicit about the ones that refer to 'latest' so I made that change. Could you review these. The next

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread Stephan Eggermont
>About Glamour, isn'it used to create Browser? How can i create a typical >window? What is a typical window? Spec gives too much freedom and not enough structure for 'typical’ applications. Almost every window in your smalltalk system is a browser. Nearly all would be significantly less code wh

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-22 Thread Johan Fabry
On Nov 22, 2013, at 12:35 PM, Stephan Eggermont wrote: >> About Glamour, isn'it used to create Browser? How can i create a typical >> window? > > What is a typical window? Spec gives too much freedom and not enough > structure for 'typical’ applications. > > Almost every window in your smallt

[Pharo-users] How images can be loaded

2013-11-22 Thread Ronie Salgado
Hello, I would like to know how I could load .png image into pharo, and being able to access to their pixel data for manipulation or display it. Greetings, Ronie Salgado

Re: [Pharo-users] How images can be loaded

2013-11-22 Thread Sven Van Caekenberghe
Hi Ronie, On 22 Nov 2013, at 19:00, Ronie Salgado wrote: > Hello, > > I would like to know how I could load .png image into pharo, and being able > to access to their pixel data for manipulation or display it. > > Greetings, > Ronie Salgado Here is an example: '/Users/Sven/Desktop/test.jpg'

Re: [Pharo-users] How images can be loaded

2013-11-22 Thread Ronie Salgado
Thanks, It works very well. Greetings, Ronie Salgado 2013/11/22 Sven Van Caekenberghe > Hi Ronie, > > On 22 Nov 2013, at 19:00, Ronie Salgado wrote: > > > Hello, > > > > I would like to know how I could load .png image into pharo, and being > able to access to their pixel data for manipulatio

Re: [Pharo-users] How images can be loaded

2013-11-22 Thread Stéphane Ducasse
hi ronie to get access to pixel have a look at the Form class (you also have the BitBlt class). Once you have a Morph you can get its form normally sending it form. Stef On Nov 22, 2013, at 7:45 PM, Ronie Salgado wrote: > Thanks, It works very well. > > Greetings, > Ronie Salgado > > > 2013

Re: [Pharo-users] How images can be loaded

2013-11-22 Thread Hilaire Fernandes
Le 22/11/2013 19:00, Ronie Salgado a écrit : > I would like to know how I could load .png image into pharo, and being > able to Check my post a few days ago about PNG image, it comes with code sample. Hilaire -- Dr. Geo http://drgeo.eu