157158159160161162163
public void register(Window window) { accessList.push(window); windows.add(window); window.setData("_gxtdate", System.currentTimeMillis()); fireEvent(Events.Register, new WindowManagerEvent(this, window)); }
179180181182183184185
front = null; } accessList.remove(window); windows.remove(window); activateLast(); fireEvent(Events.Unregister, new WindowManagerEvent(this, window)); }
210211212213214215216
private void register(Window window) { accessList.push(window); windows.add(window); window.setData("_gxtdate", System.currentTimeMillis()); fireEvent(Events.Register, new WindowManagerEvent(this, window)); }
233234235236237238239
134135136137138139140
} private void register(Window window) { accessList.push(window); window.setData("_gxtdate", System.currentTimeMillis()); fireEvent(Events.Register, new WindowManagerEvent(this, window)); }
170171172173174175176
if (front == window) { front = null; } accessList.remove(window); activateLast(); fireEvent(Events.Unregister, new WindowManagerEvent(this, window)); }