Re: [Pharo-users] Make Window Not-Sizable

2016-04-19 Thread peaslee
Stephan Eggermont wrote > On 18/04/16 01:11, peaslee wrote: >> I have a subclass of ComposableModel that I would like to keep from being >> resized by the user. Is this possible? > > Sure. > > w := (MethodBrowser new > methods: Object methods; >

[Pharo-users] Make Window Not-Sizable

2016-04-17 Thread peaslee
I have a subclass of ComposableModel that I would like to keep from being resized by the user. Is this possible? -- View this message in context: http://forum.world.st/Make-Window-Not-Sizable-tp4890496.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] List with Border

2016-04-16 Thread peaslee
> PluggableListMorph>borderStyleToUse > "Answer the borderStyle that should be used for the receiver." > > ^self enabled > ifTrue: [self theme listNormalBorderStyleFor: self] > ifFalse: [self theme listDisabledBorderStyleFor: self] > > If you then look at the different impl

Re: [Pharo-users] List with Border

2016-04-14 Thread peaslee
Stephen, I do not understand your answer. I am too new at this. -- View this message in context: http://forum.world.st/List-with-Border-tp4889556p4890053.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] List with Border

2016-04-12 Thread Bruce Peaslee
Hi, This code creates the list and fills it, but it does not show a border. initializeWidgets transactionList := ListModel new. transactionList items: #('one' 'two' 'three'). transactionLi

[Pharo-users] About Box

2016-04-10 Thread Bruce Peaslee
Hi, This is my first week with Pharo. I have been moderately successful in learning how things go, but I cannot seem to create a HELP|ABOUT dialog. Pointing me in the right direction would be appreciated. Thanks. Bruce