Search found 5 matches
- Tue Dec 15, 2009 18:55
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: [solved] Editbox, mouse click carat ignores scrolled chars
- Replies: 3
- Views: 2463
Re: Editbox, mouse click carat ignores chars scrolled to left
Thanks for clarifying that. I had the wrong idea about getTextVisual() as well as d_lastTextOffset. Will try to build from source and see what happens. [edit] -- It works properly with the new build, what a relief. Thanks Crazy Eddie! 15/12/2009 14:44:20 (Std) ---- Version 0.7.1 (Build: Dec 15 2009 ...
- Mon Dec 14, 2009 21:48
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: [solved] Editbox, mouse click carat ignores scrolled chars
- Replies: 3
- Views: 2463
[solved] Editbox, mouse click carat ignores scrolled chars
14/12/2009 01:32:53 (Std) ---- Version 0.7.1 (Build: Oct 25 2009 Debug Microsoft Windows MSVC++ 9.0 32 bit) ---- 14/12/2009 01:32:53 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ---- 14/12/2009 01:32:53 (Std) ---- XML Parser module is: CEG...
- Sun Dec 13, 2009 20:36
- Forum: Help
- Topic: Child windows steal mousewheel from Parent [Workaround]
- Replies: 6
- Views: 4200
Re: Child windows steal mousewheel from Parent
Figured I'd post my preliminary workaround. Seems to do the trick. /// In an OIS mouse movement listener . . . /// check for mouse wheel movement if(arg.state.Z.rel) { /// normalize float wheelMove = 1.0; if(arg.state.Z.rel < 0) wheelMove = -1.0; /// force wheel to the first window having property &...
- Sun Dec 13, 2009 10:26
- Forum: Help
- Topic: Child windows steal mousewheel from Parent [Workaround]
- Replies: 6
- Views: 4200
Re: Child windows steal mousewheel from Parent
Understood and thank you, that was quick.
- Sun Dec 13, 2009 10:05
- Forum: Help
- Topic: Child windows steal mousewheel from Parent [Workaround]
- Replies: 6
- Views: 4200
Child windows steal mousewheel from Parent [Workaround]
Hello CEGUI people, I hope this post is all in order. Here is the issue: ItemListbox doesn't receive scroll events if the cursor is over an ItemEntry. Same behaviour with the Thumb and inc/dec buttons of my Scrollbars. Is there a property I can set in the .looknfeel or some System flag to allow just...