Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
2k views

Writing a GUI in squeak

How can I write a GIU in Squeak? I'm a Smalltalk newbie and I'm using Cincom's VisualWorks at the moment but I'd like to give Squeak a try. I see that Squeak has Morphic for graphics but for the life ...
6
votes
4answers
111 views

Smalltalk: Sort a collection by two criteria

How can I sort a collection by two criteria in Cincom VisualWorks? Example: I have an OrderedCollection that contains persons, and want a new collection that sort the persons first by age, and then ...
5
votes
2answers
70 views

assert fails when it should not, in Smalltalk Unit testcase

I'm stumped. Here is my testcase. theTestArray := #(1.2 3 5.1 7). self assert: theTestArray squareOfAllElements = #(1.44 9 26.01 49). The assert should not fail. On calculating the square of each ...
4
votes
2answers
68 views

What is the correct way to test Unicode support in a Smalltalk implementation?

Given any Smalltalk flavor, how should I proceed to check if Unicode is supported? In case of not having support, how can I detect at which level is missing (VM, font, Converter, etc)?
3
votes
1answer
127 views

Where could I find more examples of using PetitParser?

I'm looking for additional examples of using PetitParser beyond PPArithmeticParser and PPLambdaParser that are provided in the tests package and a couple of blog posts by Lukas? If anyone's willing to ...
3
votes
2answers
186 views

Is there a smalltalk “toString” equivalent?

For example, let's say I am adding a set of objects I created, called myClass (which contains a string) to myList and then I wish to use the list and pass it to a GUI list. Is there a way to populate ...
3
votes
2answers
139 views

How to actively change a label's string in visualworks smalltalk

I am trying to dynamically change the value of a label in an ApplicationModel dynamically during the running of my program. I have tried: (self builder labelAt: #Label4) labelString: 'Dynamic text ...
3
votes
1answer
65 views

How to redraw a list in smalltalk

I have a List in my smalltalk application that gets updated by user events. The list updates correctly, but it only redraws, repaints, or refreshes whenever the window is forced to redraw. So it'll ...
3
votes
3answers
348 views

How to manage 2d array in Smalltalk?

I have a list of point and have to do erosion/dilation operations. I need a kind of 2d-array but can't find how to do in VisualWorks (I know there is a Array2d class in Squeak, but I must use VW).
3
votes
1answer
131 views

Distributed source control for VisualWorks Smalltalk

One of the annoying things about Smalltalk is that it (usually) requires its own VCS, due to the way that it manages its source code. Squeak and Gemstone (at least in its GLASS version) have a DVCS ...
3
votes
6answers
724 views

Smalltalk - Compare two strings for equality

I am trying to compare two strings in Smalltalk, but I seem to be doing something wrong. I keep getting this error: Unhandled Exception: Non-boolean receiver. Proceed for truth. stringOne := ...
3
votes
2answers
311 views

How can I run VisualWorks under OpenBSD?

Has anyone gotten VisualWorks running under OpenBSD? It's not an officially supported platform, but one of the Cincom guys was telling me that it should be able to run under a linux compatibility ...
2
votes
2answers
77 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
2answers
100 views

How do I transfer Smalltalk files between computers?

I need to transfer some Smalltalk files between two different computers, both running Cincom VisualWorks. (I'm not sure if this matters, but one is a Windows 7 machine, and the other is a Mac). How do ...
2
votes
2answers
70 views

how to activate a given window?

Anyone have luck 'activating' a given window (move to top with focus)? Say we want to activate a workspace window in dev image (VW). This does not work? | window main | window := Workbook ...
2
votes
2answers
145 views

How do I load a picture (image) into smalltalk

How do you load a picture into smalltalk? I have found several examples of how to display an image once it is a class resource, but can't find a way to import the picture into my smalltalk ...
1
vote
1answer
109 views

Browsing VisualWorks code in Squeak/Pharo

Is there any Smalltalk parser in Squeak/Pharo which allows me to browse VisualWorks code in Squeak/Pharo ? I'm interested in reading code exported in the chunk format (not in XML). Clarification: I ...
1
vote
1answer
162 views

What is the “best practice” portable way of Symbol using in Smalltalk?

What are the "best practice" rules for using symbols in Smalltalk in a portable way? I use squeak and pharo mainly and I know they both allow 'foo' = #foo and #foo = 'foo' to be true while other ...
1
vote
2answers
349 views

Smalltalk, displaying OrderedCollection to List Widget

Hi I have an ordered collection of strings which I'm trying to display on a list widget. I do the following: self displayWidget list: coll. where displayWidget is a List Widget and coll is the ...
1
vote
2answers
236 views

Smalltalk - Converting text object to string

Hi I have text editor widget in smalltalk (visual works) that returns a text object, however I want the text returned to be handled as a string object. How do you parse a text object as a string?
1
vote
1answer
46 views

How to get rid of unmanaged code in VW 3.1d and ENVY

I have an old VW3/ENVY image with a parcel loaded as unmanaged code (exactly the situation Mastering ENVY/DEVELOPER warns against). Unfortunately, this problem happened a long time ago and it's too ...
0
votes
1answer
56 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 ...
0
votes
1answer
114 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 ...
0
votes
2answers
108 views

How can I use collections with the excel com interface from visual works

Using the Excel COM automation interface I can set value in a cell by doing: excel := COMDispatchDriver createObject: 'Excel.Application'. excel getWorkbooks Add. excel setVisible: true. (excel ...