Re: [Pharo-users] Code highlight

2015-01-20 Thread Mark Rizun
I opened a case https://pharo.fogbugz.com/f/cases/14756/ Anywhay, anybody knows what this method #whenReadSelectionIsChanged: is responsible for? 2015-01-20 9:58 GMT+01:00 Mark Rizun : > I had a quick look. I confirm that TextModel keeps a value holder on the >> current selection interval, in the

Re: [Pharo-users] Code highlight

2015-01-20 Thread Mark Rizun
> > I had a quick look. I confirm that TextModel keeps a value holder on the > current selection interval, in the instance variable named ‘selection', but > apparently there is no API to register to notifications to that. I consider > that a missing feature, so I think it is best that you add a bug

Re: [Pharo-users] Code highlight

2015-01-19 Thread Johan Fabry
I had a quick look. I confirm that TextModel keeps a value holder on the current selection interval, in the instance variable named ‘selection', but apparently there is no API to register to notifications to that. I consider that a missing feature, so I think it is best that you add a bug repor

Re: [Pharo-users] Code highlight

2015-01-19 Thread Mark Rizun
Just tried, nope it doesn't work :) 2015-01-19 15:51 GMT+01:00 Johan Fabry : > > I’m not sure that this is what you need, but have you tried changing the > read selection block? ( TextModel>>readSelectionBlock: aBlock ) I would > imagine that that is the block that is called when a selection is c

Re: [Pharo-users] Code highlight

2015-01-19 Thread Johan Fabry
I’m not sure that this is what you need, but have you tried changing the read selection block? ( TextModel>>readSelectionBlock: aBlock ) I would imagine that that is the block that is called when a selection is changed. > On Jan 19, 2015, at 15:20, Mark Rizun wrote: > > Ok, I see. That's not

Re: [Pharo-users] Code highlight

2015-01-19 Thread Mark Rizun
Ok, I see. That's not good, but thanks. However, TextModel has selection as instance variable, so maybe I could implement event that I need? 2015-01-19 15:13 GMT+01:00 Nicolai Hess : > > 2015-01-19 14:36 GMT+01:00 Mark Rizun : > >> Hi everyione, >> >> When one selects piece of code in any code ed

Re: [Pharo-users] Code highlight

2015-01-19 Thread Nicolai Hess
2015-01-19 14:36 GMT+01:00 Mark Rizun : > Hi everyione, > > When one selects piece of code in any code editor pane, every other same > piece is highlighted with less bright color. > I'm using spec to build a UI and would like to know which event is > responsible for this highlihts. > This is in T

Re: [Pharo-users] Code highlight

2015-01-19 Thread Mark Rizun
btw, I found this post http://forum.world.st/pharo-ide-task-force-morphic-issues-td3682765.html 2015-01-19 14:36 GMT+01:00 Mark Rizun : > Hi everyione, > > When one selects piece of code in any code editor pane, every other same > piece is highlighted with less bright color. > I'm using spec to b

[Pharo-users] Code highlight

2015-01-19 Thread Mark Rizun
Hi everyione, When one selects piece of code in any code editor pane, every other same piece is highlighted with less bright color. I'm using spec to build a UI and would like to know which event is responsible for this highlihts. For example, in TextModel there is one event that probably is relat