javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Canvas.java
Fri, 27 Sep 2013 00:49:48 +0200 Use factory method to create GraphicsContext
Fri, 24 May 2013 07:37:46 +0200 Added Dimension class to fix problem with TextMetrics
Thu, 23 May 2013 15:33:14 +0200 moved some non-api classes out of api package
Thu, 23 May 2013 10:02:14 +0200 temporarily disabled ImageData before we found a nice solution. Maybe introduce PixelReader PixelWriter for GraphicsContext.
Tue, 21 May 2013 16:10:52 +0200 Refactored names to unpopular naming scheme, because (a) bck2brwsr Canvas implementation must be named Canvas due to mapping in bck2brwsr and I don't want interface and impl to have the same name. (b) with the "I" prefix at least it's consistent, even if nobody uses that anymore. (c) names are the same as in HTML5 Canvas Javascript API, so it's more familiar...
Fri, 17 May 2013 11:00:38 +0200 Started extracting GraphicsContext interface from JavaQuery API. First extracting methods with primitive parameters and return type.
Tue, 05 Mar 2013 07:57:16 +0100 Fixed typo
Mon, 04 Mar 2013 16:17:44 +0100 fixed bug in Canvas getWidth and getHeight
Sat, 26 Jan 2013 08:47:05 +0100 In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
Tue, 22 Jan 2013 17:28:01 +0100 API for accesing HTML canvas