Search found 6 matches: MouseInputPropagationEnabled
Searched query: mouseinputpropagationenabled
- Sat Jul 11, 2015 13:40
- Forum: Help
- Topic: [Solved] Opening a GTK+ Window causes layout problems for CEGUI widgets added later
- Replies: 14
- Views: 7572
[Solved] Opening a GTK+ Window causes layout problems for CEGUI widgets added later
... namePath="__auto_container__" > <Property name="ContentArea" value="l:0 t:0 r:178 b:390" /> <Property name="MouseInputPropagationEnabled" value="true" /> <Window type="VerticalLayoutContainer" name="renderers_container" > ...
- Wed Feb 23, 2011 08:44
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: TabcontentPane is unclickable in 0.7.5
- Replies: 1
- Views: 3199
Re: TabcontentPane is unclickable in 0.7.5
I think to make it work you will need to set the MouseInputPropagationEnabled property to True on the root of each layout 'page' of content that you add (and optionally on the actual content depending on your exact needs).
CE,
CE,
- Fri Feb 11, 2011 17:29
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: [SOLVED w/ workaround] BUG:Events not bubbled
- Replies: 6
- Views: 6976
Re: BUG:Events not bubbled (bonus: Python port of Falagard d
... to determine how/where to handle the event; just search for forums for subscribe global event or similar. Alternatively, you could look into the MouseInputPropagationEnabled code and perhaps hack similar functionality for keyboard propagation. Not sure how feasible this is, since I have not looked ...
- Tue Feb 01, 2011 14:24
- Forum: Help
- Topic: CEGUI 0.7.5 is cool but we have a few issues.
- Replies: 8
- Views: 17681
Re: CEGUI 0.7.5 is cool but we have a few issues.
... scrollable panels no longer scroll unless you scroll over the area of the scroll bar, which is kinda weird. I did some searching suggesting the MouseInputPropagationEnabled property but that thing does absolutely nothing. http://www.cegui.org.uk/phpBB2/search.php?keywords=MouseInputPropagationEnabled&terms=all&author=&fid[]=1&fid[]=10&fid[]=2&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search ...
- Tue Nov 09, 2010 14:03
- Forum: Help
- Topic: Scrollable Pane Subscriptions
- Replies: 2
- Views: 2065
Re: Scrollable Pane Subscriptions
... yet, I think it is related to input propagation being changed in 0.7.2. Take a look at this mantis ticket . In particular, you should try setting MouseInputPropagationEnabled on the window. If you search the forum for propagation you will find a few threads talking about this. Let us know if that ...
- Wed Oct 06, 2010 09:23
- Forum: Help
- Topic: Child windows steal mousewheel from Parent [Workaround]
- Replies: 6
- Views: 3986
Re: Child windows steal mousewheel from Parent [Workaround]
Window::setMouseInputPropagationEnabled(bool) is the function that should get this working (and was added for this purpose). You could alternatively set the associated property ("MouseInputPropagationEnabled") either ...