3
votes
1answer
31 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) ...
2
votes
1answer
67 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
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: ...
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 ...
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 ...
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: ...
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 ...
3
votes
1answer
61 views

Meaning of icons in class browsers

Does anyone know where one can find a description of the meaning of various "icons" and / or symbols one finds next to classes and methods in various browsers?
3
votes
3answers
69 views

Extending squeak or pharo

Using Monticello package manager does not seem to guarantee that, once you added the interesting package(s), the total image is still coherent. Are there any ways to verify that? Are dependencies ...
4
votes
2answers
78 views

Programmatically get the execution order of objects inside a method?

I have this piece of code (taken from ProfStef, but can be any method of any class). How do i programmatically get the order in which the objects are executed by Squeak/Pharo. I know the order of ...
5
votes
2answers
115 views

Morphic: Automatically resize contained group box in a scroll pane?

Testing with Pharo 1.4 summer. I think is better to explain it using screenshots, code is below. This is my initial state (what I'm getting now with my code): I want the group box morph to be ...
5
votes
1answer
70 views

How can the main window title in Squeak and Pharo be set?

How can the main window title in Squeak and Pharo be set? In Pharo I thought it could be set in the System -> Settings Menu but couldn't find anything there. Can it be set only in code?
2
votes
2answers
53 views

Is there a way of listing all the DoIts which have been done in a Smalltalk session?

Is there a way of listing all the DoIts which have been done in a session in Pharo or Squeak as well as which workspaces they were done in? Are the contents of workspaces also tracked, so they can be ...
6
votes
6answers
233 views

Is it possible to extend an individual object in Smalltalk

I'm doing research in Smalltalk reflection, and I was wondering if it was possible to extend an individual object like that would be possible for instance in Ruby. With this I mean a selector that ...
2
votes
1answer
94 views

Add a new assignment operator

I started using smalltalk and I am trying to add a new assignment operator :>. The current operator used in pharo is no selector so I started to look into the class Scanner where the underscore _ ...
8
votes
5answers
165 views

Why does add: return the object added in Smalltalk collections?

Background Something that catches every Smalltalk newbie is that add: does not return "self" but the object being added. For example, with this code: myCollection := OrderedCollection new add: ...
5
votes
5answers
191 views

Why do methods return “self” by default in Smalltalk?

Background In Smalltalk, if you don't excplicitly return anything then the message passing evaluates to the receiver (or "self" in the message context). For example, given this method: MyClass ...
5
votes
1answer
85 views

Pharo / Squeak environment with dual screens

I was just wondering if there is a way to work with multiple screens in Pharo or Squeak. I am just switching from VisualWorks to Pharo and am really missing this feature. I am used to having my ...
2
votes
4answers
166 views

Smalltalk binding

I'm not very familiar with smalltalk but what I'm trying to do is override another classes 'new' when I initialize my own class. Does that have anything to do with Class>>bindingOf:? Edit: What I'm ...
3
votes
1answer
93 views

How to indent a block of code in Pharo / Squeak?

With a selected a block of code, I try to indent it by pressing TAB. I would expect the code to be indented. Instead, the selected text is deleted and replaced by a TAB. How come? Is there any ...
2
votes
2answers
99 views

Resize image file (JPEG) in Smalltalk (Pharo)

I am trying to resize an image file on my hard drive with pharo. This is my current way of doing it: img := ImageReadWriter formFromFileNamed: 'picture.jpg'. scaledimage := img scaledIntoFormOfSize: ...
1
vote
2answers
138 views

How to connect a Morph to an Object that it is supposed to visualize in Morphic?

Let's say i have Bird class and BirdMorph class. Birds have a position, and i want BirdMorphs to change their position on the screen, whenever the corresponding bird changes it's position. What is ...
3
votes
1answer
203 views

How to deploy a nice One-Window-Application with Pharo or Squeak?

I have an application that has it's entire GUI in one Morph. Pharo and Squeak have one window in the host operating system. Now i want to tie this one Morph to the one Pharo/Squeak window in a way ...
2
votes
1answer
233 views

HowTo make a marching ants border in Morphic?

I am looking for a marching ants border or line in Morphic: Wikipedia describes a possbile algorithm: The easiest way to achieve this animation is by drawing the selection using a pen pattern ...
8
votes
2answers
134 views

Glamour and Nautilus questions

In Smalltalk, the system browser is the central tool for pretty much anything. Glamour seems to be a package for building general purpose browsers using a declarative scripting language. From the ...
3
votes
2answers
82 views

Which VM is suitable for which Pharo/Squeak release on which system?

Is there a place (website) where i can find information on which VM is needed (minimum/maximum) for a specific Pharo or Squeak release on a specific OS?
7
votes
2answers
101 views

How to copy a Monticello package to another repository under a different name with Gofer

The context is this one: A package had several branches developped in several repositories squeaksource source.squeak.org/trunk Development stopped in source.squeak.org, and the goal is to ...
7
votes
1answer
149 views

Parsing RDF in Smalltalk

Is there any example, in any Smalltalk flavour, showing how to parse a RDF file? The only package I've seen is Rikaiko with a RDFXMLReader class, but there are no references and it seems very ...
5
votes
2answers
90 views

Are there tools for branch-level test coverage tracking for Pharo/Squeak?

I am looking for something that could visualize code coverage on the branch/statement level. My understanding is that the test coverage tool provide by the test runner in Pharo and Squeak only tell ...
6
votes
3answers
235 views

Install script for OmniBrowser for Pharo 1.3?

Please do not promote Nautilus or Glamour here. I'm using Pharo 1.3 (without plans to migrate to Pharo 1.4 or 2.0). It seems to be many version of OmniBrowser out there. Which one is the most tested ...
1
vote
3answers
164 views

Generating all combinations from collections in Smalltalk

I've seen this problem resolved for C# and other languages but not for Smalltalk. I have 3 collections, for example: a := #(3 4 5). b := #(4 1 2). c := #(5 2 3). and I need to make all possible ...
4
votes
4answers
140 views

Pharo/Squeak - How do I quickly browse the implementation of a given method in a given class?

Let's say I want to see how "copy" is implemented in the Dictionary class. Currently I use the system browser and manually traverse the inheritance hierarchy (bottom up) until I find the class that ...
4
votes
1answer
108 views

How to prevent greedyness with PetitParser?

I'm trying to implement the BNF for EPD in Pharo/PetitParser. digit18 := $1 asParser / $2 asParser / $3 asParser / $4 asParser / $5 asParser / $6 asParser / $7 asParser / $8 asParser. piecePromotion ...
1
vote
1answer
154 views

Pharo and Squeak Smalltalk: Listing unimplemented methods in a package?

How do I list all unimplemented methods in a package? Given that the method should be implemented in that package and not in other (for example in a superclass outside the package or in Object). ...
13
votes
7answers
2k views

Squeak or Pharo for the beginning Smalltalker?

I am a Rubyist that is just starting to dabble in Smalltalk and am trying to chose an implementation to experiment with. It seems like Squeak or Pharo would be a good choice, but I'm having trouble ...
5
votes
1answer
143 views

VT100 screen scraping interface for Smalltalk

Hello (also posted on the VWNC list), We are looking at options for interfacing with a legacy Unix system. One option we'd like to explore would be to screen scrape a VT100 terminal session. Is there ...
0
votes
2answers
128 views

How to identify binary and text files using Smalltalk

I want to verify that a given file in a path is of type text file, i.e. not binary, i.e. readable by a human. I guess reading first characters and check each character with : isAlphaNumeric ...
7
votes
4answers
362 views

App building for a beginner in Smalltalk

I am a newbie to Smalltalk technology. My experience in programming is with C and C++. I would like to understand the design methodology of smalltalk. Could any one suggest some simple real-time apps ...
3
votes
3answers
129 views

How to change the text cursor in Squeak or Pharo?

I would like to configure a boxed text cursor without blinking, it is possible in Squeak or Pharo?
3
votes
2answers
355 views

A Smalltalk implementation with the perfect feature set

I prefer interfacing with programming languages through a standard bash terminal. While Squeak and Pharo are well documented, they don't seem to have a CLI, just a VM GUI. GNU Smalltalk and Slate ...
1
vote
1answer
332 views

Tree implementations in Smalltalk

I'm trying to find open-source implementations of Trees (not binary) like Red-black, B-Trees, 2-3 Trees, or General Tree, ideally for Squeak/Pharo, but any other implementations in other Smalltalk ...
2
votes
2answers
121 views

Packages for developing static web sites in Smalltalk?

What would be good (cross Smalltalk, mantained, documented) web frameworks or packages (in terms of fewer things to learn/adapt) to use for implementing a static web site with really few forms? .i.e. ...
2
votes
1answer
113 views

How to unload Traits from Pharo

I'm quite sure I will not use Traits in my everyday work as developer. There is a script to remove Traits from a Squeak image: http://installer.pbworks.com/w/page/19997785/UnloadTraits but I've ...
7
votes
2answers
450 views

Generating diagrams in Pharo/Squeak Smalltalk

I'm having trouble understanding big code libraries in Pharo and Squeak, is there is a typical template script to generate a static class relationship diagram (not necessarily UML) and a dynamic ...
2
votes
1answer
86 views

What high level network object passing facilities exist in squeak/pharo?

The squeak webpage says: Squeak provides programatic access to the networking environment of your computer at all levels, from high level object passing What package should I load to take a look at ...
2
votes
4answers
270 views

Can I use interactive command line for Squeak/Pharo development?

I tried to install Squeak/Pharo into Ubuntu server machine. ./squeak -vm-display-null ./Pharo-1.2.2-12353/Pharo-1.2.image It executed, but there was no command-line. No way to use without GUI?
5
votes
3answers
555 views

What's the difference of Squeak/Pharo/Newspeak Smalltalk VMs?

I saw 3 different VMs while learning about Smalltalk. They are Squeak/Pharo/Newspeak. What's the difference between them?
1
vote
2answers
131 views

Is there a smalltalk implementation of the textile “humane text” format?

I like the textile 'Humane web text generator' and I'd like to use it in tools like Pier, but I've not yet come across a Smalltalk implementation. Does such a thing exist?
2
votes
6answers
474 views

smalltalk public initialize

Is there any way to "hide" initialize method so it couldn't be called after construction? I would like something like: Class>>new: params ^super newInstance initializedBy: [ "actual ...

1 2