Hi ONEEYEMAN,
Thanks for the suggestion. I did not compile the code against wx 3.0 yet. I will try that after some time. We are making wxFrame modal because we need menu.
~Gopi
Search found 5 matches
- Sat Nov 22, 2014 3:34 am
- Forum: Platform Related Issues
- Topic: OSX 10.10 application menu hang when two wxFrame is involved
- Replies: 2
- Views: 763
- Tue Oct 28, 2014 11:34 am
- Forum: Platform Related Issues
- Topic: OSX 10.10 application menu hang when two wxFrame is involved
- Replies: 2
- Views: 763
OSX 10.10 application menu hang when two wxFrame is involved
Hi, wx2.8 We have an application which launches another window hosted in wxFrame. Actually we have created custom class deriving from wxFrame to make it modal. To making it modal we copied code from wxDialog. Now in OSX 10.10 when child frame is closed the menu of parent application becomes un acces...
- Mon Dec 03, 2012 1:55 pm
- Forum: Platform Related Issues
- Topic: transparent window in osx with events passthrough
- Replies: 3
- Views: 2188
Re: transparent window in osx with events passthrough
Hi,
Following changes solved the problem
void wxTopLevelWindowMac::DoMacCreateRealWindow()
{
---
if ( HasFlag(wxTRANSPARENT_WINDOW))
{
attr |= kWindowIgnoreClicksAttribute;
}
------------
}
toplevel.cpp
Thanks,
Gopi
Following changes solved the problem
void wxTopLevelWindowMac::DoMacCreateRealWindow()
{
---
if ( HasFlag(wxTRANSPARENT_WINDOW))
{
attr |= kWindowIgnoreClicksAttribute;
}
------------
}
toplevel.cpp
Thanks,
Gopi
- Fri Nov 30, 2012 4:11 pm
- Forum: Platform Related Issues
- Topic: transparent window in osx with events passthrough
- Replies: 3
- Views: 2188
Re: transparent window in osx with events passthrough
Protocol,
Thanks for your suggestion. I am just using a dialog which is semi-transparent. That i am able to get it in mac by setting window SetTransparent(100);
I want that dialog should not catch the mouse events and events has to go to underneath windows.
thanks,
Gopi
Thanks for your suggestion. I am just using a dialog which is semi-transparent. That i am able to get it in mac by setting window SetTransparent(100);
I want that dialog should not catch the mouse events and events has to go to underneath windows.
thanks,
Gopi
- Tue Nov 27, 2012 12:11 pm
- Forum: Platform Related Issues
- Topic: transparent window in osx with events passthrough
- Replies: 3
- Views: 2188
transparent window in osx with events passthrough
Hi,
How to create a transparent window in OSX that passes the mouse events to underlying window?
I had seen the solution for windows in this forum
http://forums.wxwidgets.org/viewtopic.php?f=1&t=25785
But not able to get the same behavior in OSX.
Thanks,
Gopi
How to create a transparent window in OSX that passes the mouse events to underlying window?
I had seen the solution for windows in this forum
http://forums.wxwidgets.org/viewtopic.php?f=1&t=25785
But not able to get the same behavior in OSX.
Thanks,
Gopi