I'm creating some custom FireMonkey GUI controls. The components need to update in response to user interactions. VCL controls can call Invalidate() to be placed into a queue for repainting. Does FireMonkey have an equivalent method?

FireMonkey controls have a Repaint() method, but AFAICT that forces the control to be repainted immediately. A queue type system would be more appropriate in some circumstances.

link|improve this question

I haven't used XE2 yet, but I assume there must be something like "scene|object.refresh|redraw" – Dorin Duminica Dec 7 '11 at 4:22
3  
TControl.Realign fits more because most of the time there is no direct drawing in FMX controls, as they are made of primitive. If you call Realign, primitives will be redrawn – az01 Dec 7 '11 at 16:19
feedback

2 Answers

up vote 2 down vote accepted
Control.InvalidateRect(RectF(0,0,width,height));
link|improve this answer
As far as I can tell, this is the correct answer to my question. The InvalidateRect() method doesn't work as I hoped it would but I guess that is due to differences between VCL and FMX. Thanks Relativ. – Shannon Dec 11 '11 at 13:24
feedback

FireMonkey's TControl.Repaint ends up calling TPlatformWin.ReleaseWindow. If Form.Transparency is false then this method calls the Windows InvalidateRect function, just like VCL's TControl.Invalidate does.

So Repaint actually does the same thing VCL's Invalidate does, unless Form.Transparency=true.

link|improve this answer
Thanks for the explanation Giel – Shannon Dec 11 '11 at 13:26
feedback

Your Answer

 
or
required, but never shown

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