Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In XCode by adding these methods to your NSView subclass can prevent the window from becoming active when clicking on it:

- (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent )theEvent {
    return YES;
}
- (BOOL)acceptsFirstMouse:(NSEvent )theEvent {
    return YES; 
}
- (void)mouseDown:(NSEvent )theEvent {
    [[[NSApp]] preventWindowOrdering]; 
}

In Windows platform It is done by this simple code:

HWND hWnd = FindWindowW((String("FM") + fmxForm->ClassName()).c_str(), 
    fmxForm->Caption.c_str());

SetWindowLong(hWnd, GWL_EXSTYLE,
    GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_NOACTIVATE);

How can I subclass NSView to prevent my FMX TForm becoming active when clicking on it?

How can I create "No Activate" form in firemonkey?

Note: I requested new TForm property named NoActivate on QualityCentral, please rate it: http://qc.embarcadero.com/wc/qcmain.aspx?d=116611

share|improve this question
2  
Not sure if it applies to Firemonkey as well, or if it answers your question properly, but you might want to have a look at this example: delphi.about.com/od/delphitips2008/qt/ex_noactivate.htm – TildalWave Jan 25 at 15:41
Thankyou, but it is only for Windows and the easier way is my solution described above by "SetWindowLong", The question is about MacOS. – mh taqia Jan 26 at 11:19
Devon: How this link could help me? – mh taqia Feb 24 at 19:46
Thanks to WBAR, it is second bounty! – mh taqia Feb 26 at 16:47
show 3 more comments

1 Answer

You can turn off the forms mouse handling to prevent it being focused. Assuming your form is called myform:

uses fmx.platform.mac, macapi.appkit;
.
.
Var nswin:nswindow;
.
.  
NSWin:= NSWindow(NSWindowFromObjC(FmxHandleToObjC(myform.Handle))); { get the NSWindow }
NSWin.setIgnoresMouseEvents(true);                                 { ignore mouse events }
NSWin.setAcceptsMouseMovedEvents(false);

There is a slight problem in that it doesn't stop a right mouse click. If that's a problem, you will have to respond to the mousedown event in the form and call the main forms mousedown so it doesn't lose the mouse event. Since the right mouse down will then capture the mouse events, you also then need to respond to mouse move and mouse up events too - forwarding them to your main form. Although it captures the mouse on right click, it will still not focus the form.

Dave Peters DP Software

share|improve this answer
Incorrect, does not work. The form changes keyboard focus on click. – mh taqia Feb 28 at 16:36
Well its not getting focus but what happens is that any mouse clicks go through the form to whatever is beneath it. If you can arrange that the non focus form has the TopMost property set and only a blank part of your own main form is ever below it, then it will work. If you have any main form controls underneath the window then they will get focus when you mouse click as the non-focus window behaves like it is not there. Similarly if the window is placed over the desktop then the desktop gets the mouse click and your application loses focus. – David Peters Feb 28 at 22:23
Note that I need mouse events. I can not ignore mouse events. I want to click on a button, also I want to have firemonkey animations when mouse pointer enters on a control. Assume that I want to create a virtual keyboard, foreground application is (for example) TextEdit. When I click on a button on my fmx form, an keyboard event will be generated and a character will be typed. – mh taqia Mar 1 at 7:54

protected by Community Jun 8 at 6:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.