[Pharo-users] Spec Questions

2016-02-02 Thread Khrystyna Mykhailiuk
Hello, all! Recently, I have started working with Spec framework in Pharo. I want to put sub widgets into tabModel widget. Is it possible to do? If yes, Could you tell me please, what method I should use? And how interacting with these sub widgets? Thank you, Khrystyna. -- View this messa

Re: [Pharo-users] Spec Questions

2016-02-02 Thread Khrystyna Mykhailiuk
symstembrowser > and an object inspector. > > I hope this helps. > > > nicolai > > > > 2016-02-02 9:31 GMT+01:00 Khrystyna Mykhailiuk <[hidden email] > <http:///user/SendEmail.jtp?type=node&node=4875312&i=0>>: > >> Hello, all! >> &g

[Pharo-users] Create type(class) dynamically

2016-02-03 Thread Khrystyna Mykhailiuk
Hi, all! Is it possible in Pharo to create a type (class) dynamically? Not using special space for it, but create type by running method of another class. Thanks, Khrystyna. -- View this message in context: http://forum.world.st/Create-type-class-dynamically-tp4875651.html Sent from the Phar

Re: [Pharo-users] Create type(class) dynamically

2016-02-03 Thread Khrystyna Mykhailiuk
subclass: #ClassName > instanceVariableNames: 'instVar1 instVar2' > classVariableNames: '' > category: 'APackage' > > Then you can add method using: > > ClassName compile: 'helloWorld > ^''Hello world!''' &

[Pharo-users] How to display Dictionary using TreeModel

2016-02-09 Thread Khrystyna Mykhailiuk
Hi, all! I have OrderedCollection of Dictionaries and I want to display content of each Dictionary using TreeModel. I wrote these code, but it doesn't work correctly. And I get some errors. mt := TreeModel new. mt roots: (collectionFirst select: OrderedCollection new); childrenBlock: [ :item | it

[Pharo-users] Keystroke in ComposableModel

2016-05-11 Thread Khrystyna Mykhailiuk
Hello! I would like to implement some shortcuts at the window of an object of ComposableModel class. Can anybody help me to understand which methods I should override? -- View this message in context: http://forum.world.st/Keystroke-in-ComposableModel-tp4894301.html Sent from the Pharo Smallt