1 package thinlet.drafts; 2 3 import thinlet.*; 4 5 8 public class MDI { 9 10 13 public void newDialog(Thinlet thinlet, Object desktop) { 14 try { 15 Object dialog = thinlet.parse("mdidialog.xml", this); 16 thinlet.add(desktop, dialog, 0); 17 } catch (Exception exc) {} 18 } 19 20 23 public void setModal(Thinlet thinlet, Object dialog, boolean modal) { 24 thinlet.setBoolean(dialog, "modal", modal); 25 } 26 27 30 public void closeDialog(Thinlet thinlet, Object dialog) { 31 thinlet.remove(dialog); 32 } 33 } | Popular Tags |