blox-gtk issue

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

blox-gtk issue

Brad Watson
I'm encountering a similar issue to the one that I encountered when I attempted to run blox-tk:

"Scavenging... 89% reclaimed, done"
Loading package BloxTK
"Scavenging... 82% reclaimed, done"
Available tests
    #balloonTest
    #callbackTest
    #canvasTest
    #colorButtonTest
    #colorDialogTest
    #dialogTest1
    #dialogTest2
    #dropdownTest
    #editTest
    #eventTest
    #fileDialogTest
    #formattingTest
    #formTest
    #hContainerTest
    #iconTest
    #imageTest
    #labelTest
    "Scavenging... 62% reclaimed, done"
#listboxTest
    #menuTest
    #popupMenuTest
    #progressTest
    #textEventsTest
    #textTest
    #vContainerTest
Loading package Parser
"Scavenging... 58% reclaimed, done"
Loading package Browser
"Scavenging... 58% reclaimed, done"
"Global garbage collection... done"
Starting window environment...
Object: 'helvetica 10' error: did not understand #value
MessageNotUnderstood(Exception)>>#signal
String(Object)>>#doesNotUnderstand:
False>>#ifTrue:ifFalse:
BLOX.BMenuBar class(BLOX.Blox class)>>#defaultFont
BLOX.BMenuBar>>#initialize:
BLOX.BMenuBar class(BLOX.Blox class)>>#new:
BLOX.BLOXBrowser.BrowserShell(BLOX.BLOXBrowser.TopLevelShell)>>#menuBar
BLOX.BLOXBrowser.Menu class>>#new:label:
BLOX.BLOXBrowser.BrowserShellMenuTemplate>>#defineIn:
optimized [] in BLOX.BLOXBrowser.BrowserShell>>#initialize:
OrderedCollection(SequenceableCollection)>>#do:
BLOX.BLOXBrowser.BrowserShell>>#initialize:
BLOX.BLOXBrowser.BrowserShell class(BLOX.BLOXBrowser.TopLevelShell class)>>#new:
BLOX.BLOXBrowser.BrowserShell class>>#openWorksheet:withText:
BLOX.BLOXBrowser.BrowserMain>>#initialize
UndefinedObject>>#executeStatements

Regards,

Brad Watson





_______________________________________________
help-smalltalk mailing list
[hidden email]
http://lists.gnu.org/mailman/listinfo/help-smalltalk
Reply | Threaded
Open this post in threaded view
|

Re: blox-gtk issue

Brad Watson
The following modification to BloxBasic.st fixed it for me:

whitebearded1@ubuntu:~/src/smalltalk/blox-tk$ diff BloxBasic.st.orig BloxBasic.st
995,996c995,996
<       ifTrue: 'lucida 13'
<       ifFalse: 'helvetica 10'
---
>       ifTrue: [^'lucida 13']
>       ifFalse: [^'Helvetica 10']

and in BloxWidgets.st I made the following change (which I'm not certain was necessary)

all occurences of 'self class defaultFont'  were replaced with: 'Blox defaultFont'  (I dont have the original file anymore to produce a diff.)

Kind Regards,

Brad Watson


----- Original Message ----
From: Brad Watson <[hidden email]>
To: [hidden email]
Sent: Monday, October 16, 2006 2:15:20 PM
Subject: [Help-smalltalk] blox-gtk issue

I'm encountering a similar issue to the one that I encountered when I attempted to run blox-tk:

"Scavenging... 89% reclaimed, done"
Loading package BloxTK
"Scavenging... 82% reclaimed, done"
Available tests
    #balloonTest
    #callbackTest
    #canvasTest
    #colorButtonTest
    #colorDialogTest
    #dialogTest1
    #dialogTest2
    #dropdownTest
    #editTest
    #eventTest
    #fileDialogTest
    #formattingTest
    #formTest
    #hContainerTest
    #iconTest
    #imageTest
    #labelTest
    "Scavenging... 62% reclaimed, done"
#listboxTest
    #menuTest
    #popupMenuTest
    #progressTest
    #textEventsTest
    #textTest
    #vContainerTest
Loading package Parser
"Scavenging... 58% reclaimed, done"
Loading package Browser
"Scavenging... 58% reclaimed, done"
"Global garbage collection... done"
Starting window environment...
Object: 'helvetica 10' error: did not understand #value
MessageNotUnderstood(Exception)>>#signal
String(Object)>>#doesNotUnderstand:
False>>#ifTrue:ifFalse:
BLOX.BMenuBar class(BLOX.Blox class)>>#defaultFont
BLOX.BMenuBar>>#initialize:
BLOX.BMenuBar class(BLOX.Blox class)>>#new:
BLOX.BLOXBrowser.BrowserShell(BLOX.BLOXBrowser.TopLevelShell)>>#menuBar
BLOX.BLOXBrowser.Menu class>>#new:label:
BLOX.BLOXBrowser.BrowserShellMenuTemplate>>#defineIn:
optimized [] in BLOX.BLOXBrowser.BrowserShell>>#initialize:
OrderedCollection(SequenceableCollection)>>#do:
BLOX.BLOXBrowser.BrowserShell>>#initialize:
BLOX.BLOXBrowser.BrowserShell class(BLOX.BLOXBrowser.TopLevelShell class)>>#new:
BLOX.BLOXBrowser.BrowserShell class>>#openWorksheet:withText:
BLOX.BLOXBrowser.BrowserMain>>#initialize
UndefinedObject>>#executeStatements

Regards,

Brad Watson





_______________________________________________
help-smalltalk mailing list
[hidden email]
http://lists.gnu.org/mailman/listinfo/help-smalltalk







_______________________________________________
help-smalltalk mailing list
[hidden email]
http://lists.gnu.org/mailman/listinfo/help-smalltalk
Reply | Threaded
Open this post in threaded view
|

Re: blox-gtk issue

Brad Watson
In reply to this post by Brad Watson
Correction: I referenced blox-gtk when I should have referenced blox-tk ....  My apologies for any confusion I caused.

Regards,

Brad Watson

----- Original Message ----
From: Brad Watson <[hidden email]>
To: Brad Watson <[hidden email]>; [hidden email]
Sent: Monday, October 16, 2006 8:48:15 PM
Subject: Re: [Help-smalltalk] blox-gtk issue

The following modification to BloxBasic.st fixed it for me:

whitebearded1@ubuntu:~/src/smalltalk/blox-tk$ diff BloxBasic.st.orig BloxBasic.st
995,996c995,996
<       ifTrue: 'lucida 13'
<       ifFalse: 'helvetica 10'
---
>       ifTrue: [^'lucida 13']
>       ifFalse: [^'Helvetica 10']

and in BloxWidgets.st I made the following change (which I'm not certain was necessary)

all occurences of 'self class defaultFont'  were replaced with: 'Blox defaultFont'  (I dont have the original file anymore to produce a diff.)

Kind Regards,

Brad Watson


----- Original Message ----
From: Brad Watson <[hidden email]>
To: [hidden email]
Sent: Monday, October 16, 2006 2:15:20 PM
Subject: [Help-smalltalk] blox-gtk issue

I'm encountering a similar issue to the one that I encountered when I attempted to run blox-tk:

"Scavenging... 89% reclaimed, done"
Loading package BloxTK
"Scavenging... 82% reclaimed, done"
Available tests
    #balloonTest
    #callbackTest
    #canvasTest
    #colorButtonTest
    #colorDialogTest
    #dialogTest1
    #dialogTest2
    #dropdownTest
    #editTest
    #eventTest
    #fileDialogTest
    #formattingTest
    #formTest
    #hContainerTest
    #iconTest
    #imageTest
    #labelTest
    "Scavenging... 62% reclaimed, done"
#listboxTest
    #menuTest
    #popupMenuTest
    #progressTest
    #textEventsTest
    #textTest
    #vContainerTest
Loading package Parser
"Scavenging... 58% reclaimed, done"
Loading package Browser
"Scavenging... 58% reclaimed, done"
"Global garbage collection... done"
Starting window environment...
Object: 'helvetica 10' error: did not understand #value
MessageNotUnderstood(Exception)>>#signal
String(Object)>>#doesNotUnderstand:
False>>#ifTrue:ifFalse:
BLOX.BMenuBar class(BLOX.Blox class)>>#defaultFont
BLOX.BMenuBar>>#initialize:
BLOX.BMenuBar class(BLOX.Blox class)>>#new:
BLOX.BLOXBrowser.BrowserShell(BLOX.BLOXBrowser.TopLevelShell)>>#menuBar
BLOX.BLOXBrowser.Menu class>>#new:label:
BLOX.BLOXBrowser.BrowserShellMenuTemplate>>#defineIn:
optimized [] in BLOX.BLOXBrowser.BrowserShell>>#initialize:
OrderedCollection(SequenceableCollection)>>#do:
BLOX.BLOXBrowser.BrowserShell>>#initialize:
BLOX.BLOXBrowser.BrowserShell class(BLOX.BLOXBrowser.TopLevelShell class)>>#new:
BLOX.BLOXBrowser.BrowserShell class>>#openWorksheet:withText:
BLOX.BLOXBrowser.BrowserMain>>#initialize
UndefinedObject>>#executeStatements

Regards,

Brad Watson





_______________________________________________
help-smalltalk mailing list
[hidden email]
http://lists.gnu.org/mailman/listinfo/help-smalltalk












_______________________________________________
help-smalltalk mailing list
[hidden email]
http://lists.gnu.org/mailman/listinfo/help-smalltalk