Mercurial > MadButterfly
view Android/java/org/madbutterfly/coord.java @ 1535:9aff42a7e2b9 tip
Fix issue of add/remove a frame at a scene before all key frames of a layer.
When you added or removed a frame at a scene before all key frames of
a layer, frameline was not updated correctly. It seems nothing
happened, but domview is updated. This changeset fix this issue by
correcting logic for boundary case.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Fri, 30 Sep 2011 22:07:28 +0800 |
parents | c468e397614d |
children |
line wrap: on
line source
package org.madbutterfly; import java.util.ArrayList; public class coord { protected int addr; redraw_man rdman; public ArrayList children; public ArrayList members; public coord(redraw_man rdman, int addr) { this.addr = addr; this.rdman = rdman; children = new ArrayList(); members = new ArrayList(); } protected void invalid() { addr = 0; } protected void finalize() { if(addr != 0) _jni.rdman_coord_free(rdman._rdman_addr, addr); } public void add_shape(shape member) { _jni.rdman_add_shape(rdman._rdman_addr, member.addr, addr); members.add(member); member.parent = this; _jni.rdman_coord_changed(rdman._rdman_addr, addr); _jni.rdman_shape_changed(rdman._rdman_addr, member.addr); } }