From: Panayotis K. <pan...@pa...> - 2009-10-12 17:28:50
|
On 12 Οκτ 2009, at 7:50 μ.μ., Wolfgang Korn wrote: > It looks like you are doing a lot of work to improve XMLVM ;-) > > If there is a UIColor implementation it should be possible to update > the > Java version of UIAlertView to make use of this. I think I will look > at > this after all your patches have been merged. The current > java.awt.Color > based methods should be deleted if possible since they seem to cause > some confusion. > > -- Wolfgang Exactly that is what I did. Every (visible) Color reference went away :). The same with Font which become UIFont. Now I am rearranging and rewriting the GUI objects, to clearly indicate what is in the API and what is in the emulator. In other words a clear separation of Model and View ;) The reason for this is I was confused in the beginning what was supported and what wasn't. (Remember UIButton test?) With this separation will be clear what is emulation-specific, what could be implemented (but it is not implemented yet) and what is already implemented (sort of). And in general, the code will be much more clear! As it goes, the full patch will be really really big :P |