Pharo is an open-source Smalltalk environment. It is a derivative of Squeak and is MIT licensed with some original Apple parts remaining under the Apache 2.0 license.
0
votes
1answer
11 views
NBFFICallback with Win32 types raising type unresolved
I am currently exploring NativeBoost. Thought i will start with a simple event hook. For defining the callback i subclassed NBFFICallback and added my fnSpec with a return type of LRESULT.
fnSpec
...
3
votes
1answer
35 views
How to add an instance variable using Refactoring Browser?
I want to add an instance variable programatically to an existing class using Refactoring Browser:
| theClass className |
className := #MyClass.
theClass := (RBClass existingNamed: className)
...
0
votes
1answer
51 views
Saving modifications to existing kernel methods to Monticello
I'm working on Phratch (Scratch 2.0 in Smalltalk) and have modified the InputEventSensor>>processEvent method to store the last key pressed, in a similar manner to how the modifier keys are stored, so ...
2
votes
1answer
56 views
Does NBOpenGL really worth the effort?
Ok so I tried to learn Opengl ES 2 (and opengl 4) during my eastern vacation because I realised that I dont really need Athens or vector graphics for my GUI, since I will be dealing mostly with 3d ...
2
votes
1answer
68 views
Adjusting points in Pharo Smalltalk
I'm new to Smalltalk, so please bear with me. I'm simply trying to make a simple drawing using Morphs.
Now I can create Circles and Lines, but I'm having issues adjusting the start and end point ...
2
votes
0answers
39 views
Can't peek keyboard events multiple times in Smalltalk Pharo 2
I want to peek at keyboard events, and according to the docs for Sensor I can do this without removing the event from the queue with peekKeyboardEvent, however it doesn't seem to work.
This works:
...
2
votes
1answer
63 views
How do I sleep for a few seconds in Smalltalk Pharo, and be able to interrupt this?
I'm debugging some keyboard event code and I want to loop with a sleep (to give me a chance to create the keyboard event), however when I do this Pharo won't let me quit with Command-. so debugging is ...
2
votes
1answer
26 views
getting 'ObsoleteTrait' when adding a trait in a testCase
I'm having a problem.
I'm using a code in a testCase
It starts like this
|mapeos obj myClass|
myClass := Smalltalk at: #ClaseForTesting.
myClass addToComposition: TraitPruebaCondicion1.
the ...
2
votes
2answers
46 views
Need Information on UserInterface Creator in Pharo
I am looking for a UIPainter (VW) like tool in Pharo. I see that Glamour has some examples in it, but I am not able to get Glamour on to the Pharo2.0 image. It would be great if I could get some ...
4
votes
2answers
68 views
Create selector dynamically from string
I've made a program that uses reflection to add a Trait dynamically, and solves conflicts automatically in one predeterminated way.
It uses aliases. It's working (I think), but I have only a problem ...
1
vote
0answers
25 views
Avoid duplication of edges in roasal
Is there some way to avoid duplication of the edges in Roasal? I'm building a diagram of the meta-model form Moose, and I have some opposite relations but I don't have a reason to show them in both ...
1
vote
2answers
31 views
Change edge name that appears in popup on hover
How can I change a text that appears whe you hover over edge in Roasal? I have not found this anywhere on the web
5
votes
1answer
43 views
How do I instrument test runners in SUnit?
I would like to instrument SUnit tests in Pharo. What is the proper way to change how tests are run?
Example:
I want to introduce a timeout to tests, each test I run should be aborted after a given ...
4
votes
0answers
35 views
How to record a complete system change in Pharo?
Given a changeBlock that introduce a change to the Pharo Environment (such as loading a configuration, slice or changeset).
Example code:
oldEnvironment := Environment current serialize.
changeBlock ...
2
votes
2answers
45 views
Run SmallLint rule on all Classes
Given a smallint rule RBUnclassifiedMethodsRule new, how do I run the rule on all classes in the System?
Strangely enough RBUnclassifiedMethodsRule new run does not give me back the full results.
3
votes
2answers
53 views
Test fixtures or equivalent for test data with Smalltalk Seaside?
I've been using Test Driven Development in a Seaside app I've been playing with, and all of my data is stored as objects in the image (as opposed to a database).
So when I run my tests I've had to ...
2
votes
1answer
30 views
How do I display the Pharo 2 welcome message?
I closed the workspace that is titled "Welcome to Pharo 2.0". How do I open it again?
4
votes
1answer
73 views
Loading Seaside onto Pharo 2.0
Pharo 2.0 was released recently. I downloaded it, and tried running this:
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfSeaside30';
load.
(Smalltalk at: ...
5
votes
1answer
61 views
In AthensTutorial where canvas comes from?
I was doing the AthensTutorial , I understand the first step
surface := AthensCairoSurface extent: self extent asIntegerPoint.
and then step 2 is
surface drawDuring: [:canvas |
"First, we clear ...
2
votes
1answer
55 views
error while committing to gemstone respository : ZnHttpUnsuccessful : 501 Not Implemented
while adding my project to ss3.gemstone.com/ss but when I do commit in monticello I get following error "ZnHttpUnsuccessful : 501 Not Implemented"
3
votes
1answer
25 views
Helvetia LBChange
What is the LBChange used for in Helvetia? I see that in every language box there is one #change: which returns a new LBChange.
2
votes
1answer
99 views
how to change submorph position
I have two morphs that one is in the other.
a:= Morph new.
b:= Morph new.
a addMorph: b.
a openInWorld.
but when I want to change b's position by doing b position: 100@100, it never shows the ...
5
votes
3answers
76 views
How to define a ConfigurationOf with a #development version that depends on a baseline?
In Pharo, I want to define a Metacello's ConfigurationOfNand2Tetris that has just one package:
ConfigurationOfNand2Tetris>>baseline01: spec
<version: '0.1-baseline'>
spec
for: ...
7
votes
3answers
79 views
Porting code to Pharo 2.0
Pharo 2.0 changed some basic API bits, and I cannot found the new way of doing the following:
FileDirectory default directoryNamed: aFolderString.
FileDirectory on: aFilename.
FileDirectory default ...
3
votes
2answers
45 views
Smalltalk ReferenceStream has problems with new instance variables?
In Pharo Smalltalk I'm using ReferenceStream to serialise a list of objects -- here's the class definition of the objects I'm serialising:
Object subclass: #Task
instanceVariableNames: 'title notes ...
3
votes
2answers
78 views
How do Announcements relate to the classic Smalltalk-80 dependent/change/update mechanism?
With the Announcements framework available in Pharo Smalltalk, is there still a reason to use the classic Smalltalk-80 dependent/change/update mechanism?
4
votes
2answers
98 views
Why instanceVariableNames is a String and not a more structured collection
I'm a Smalltalk beginner, currently playing with Pharo and I'm curious about a choice in the subclass message: the keyword instanceVariableNames wants something able to answer to the subStrings ...
3
votes
1answer
35 views
Custom instance variables and initializing with PetitParser
As far as I know PetitParser initializes each instance variable with a production method of the same name. What should one do, to add a custom instance variable and initialize it in the initialize ...
3
votes
2answers
75 views
How to bind a LabelMorph/TextMorph to a variable so that the Morph reflects changes of the variable?
I have an object with a variable containing a String.
I have a window containing a LabelMorph/TextMorph (or some other Morph that displays Text?).
How do i bind the LabelMorph/TextMorph to the ...
2
votes
1answer
24 views
PetitParser not distributive?
Are rules in PetitParser distributive?
There were next rules:
integerLiteral --> hexIntegerLiteral / octalIntegerLiteral / decimalIntegerLiteral
hexIntegerLiteral --> hexNumeral , ...
2
votes
1answer
23 views
Forbid token to parse extra whitespace
Now idea is like this: in Java for octalIntegerLiteral I have a rule
octalNumeral, (integerTypeSuffix optional)
But I want to get a numbers as token, so I used:
octalNumeral javaToken, ...
1
vote
2answers
71 views
Is there a mature OpenGL library for Pharo 2.0?
The answer in http://book.pharo-project.org/book/LanguageAndLibraries/3DGraphicsAndOpenGL/ is too outdated.
4
votes
1answer
52 views
How do I create UK dates from strings in Pharo Smalltalk?
I have some code that successfully parses strings to create dates:
date := string asDate
But this assumes US date format mm/dd/yyyy.
I know I can output a date as a string in UK format like this:
...
3
votes
2answers
74 views
How can I change the font in a CommandShell window in pharo or squeak?
In Pharo and Squeak, if it's installed you can type CommandShell open. and it will open a command window which is basically like a "bash shell" or "terminal window", but it is using a nearly ...
0
votes
0answers
53 views
Pharo fails to run [closed]
I'm using Windows XP SP3 on an AMD Athlon XP 2600+.
It's not a problem with the image; it runs perfecly in a different WinXP machine.
I have not found a list of system requirements or a link to tech ...
4
votes
1answer
51 views
Self-referencing PetitParser's PPCompositeParsers
I have a programming language grammar I would like to explode in several subclasses of PPCompositeParser (e.g., one class will handle instructions, another class will handle expressions, another class ...
2
votes
1answer
17 views
using morphic step method outside the UI
I'd like to have a class respond to the morphic "step" message - but the class doesn't need to be displayed (directly)... so it's not a Morph
is there a way to use this message outside of morphic, or ...
3
votes
1answer
42 views
How can a PetitParser parse rule signal an error?
I want a parse rule that only recognizes numbers between 0 and 32767. I tried something like:
integerConstant
^ (#digit asParser min: 1 max: 5) flatten
==> [ :string | | value |
...
2
votes
1answer
47 views
Morphic Breaking down borders
How can i break Morph borders into something like this??
I want to use these Morphs for Maze
1
vote
1answer
177 views
Generating Maze using DFS Algorithm
Here is pseudo code for DFS Algorithm
http://www.mazeworks.com/mazegen/mazetut/index.htm
create a CellStack (LIFO) to hold a list of cell locations
set TotalCells = number of cells in grid
choose a ...
2
votes
1answer
54 views
Starting Pharo with extra memory on OS X
I am running an expensive analysis and my Pharo image raises a Low Memory error.
I know there was a way of starting the Cog VM with extra memory but can't find it now. Does anybody know how to do ...
2
votes
1answer
60 views
Creating a Maze
I am trying to Create a Maze with PBE-Lighoutgame as my ref without Mouse Click events
I have a 2 classes
Both these classes are subclass of RectangleMorph
VisibleSquare>>initialize
...
5
votes
2answers
110 views
How to make a perspective transformation with Athens/Cairo in Pharo Smalltalk
I found affine transformation functionality (rotate, shear, translate, scale) in Athens/Cairo in Pharo Smalltalk.
I am looking for a perspective transformation. Is this possible at all? At least ...
10
votes
1answer
263 views
Are there any realtime pusher type services that use pure websocket for the server backend?
I am interested in developing a multiplayer game with Pharo Smalltalk as a server backend, and amber smalltalk + an html5 gaming library for the web client frontend.
Pharo smalltalk has websocket ...
4
votes
1answer
114 views
Is there a specific method that would get executed in a class when i load a Monticello package containing this class?
Is there a specific method that would get executed in a class when i load a Monticello package containing this class?
An Example:
Version 1,
SomeMonticelloPackage-MyName.1.mcz:
Object subclass: ...
8
votes
1answer
78 views
Parsing comments with PetitParser in Pharo
Is there a simpler way to parse 1-line comments than this?
comment
^ '//' asParser ,
(#any asParser starLazy: (#newline asParser)) ,
#newline asParser
==> [ ...
3
votes
2answers
103 views
What is the most efficient way to join two instances of ByteArray?
I want to join two instance of ByteArray in Squeak, Cuis or Pharo Smalltalk
b := #[10 11 12 13] asOrderedCollection.
b addAll: #[21 22 23 24].
b asByteArray
Are there more efficient ways to do ...
9
votes
2answers
107 views
Is it possible to deploy a pharo image without .changes and .sources files
I've built a pharo application that I want to give to my customers. The application is based on seaside and will run headless. For this I don't need the .source and .changes file. I would like to save ...
1
vote
1answer
38 views
Error handling For SMTPClient
[SMTPClient
deliverMailFrom: sender
to: recipient
text: message
usingServer: 'mail.google.com']
on: Error
do:["Transcript show:'Sumthing went wrong'"].
If SMTPClient ...
1
vote
1answer
51 views
Streaming over a text
I am trying to stream over text and get values that can be assigned to sender and recipient to send mail with SMTPClient
|message sender recipient Stream peek|
message:= 'To: myemail@gmail.com, ...

