1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00
This commit is contained in:
gnosygnu
2015-04-12 23:12:36 -04:00
parent 18dcd3f89e
commit 551120b906
171 changed files with 3625 additions and 1983 deletions

View File

@@ -76,6 +76,7 @@ class Mem_html extends GxwTextMemo_lang implements Gxw_html { public String Htm
public boolean Html_elem_img_update(String elem_id, String elem_src, int elem_width, int elem_height) {return true;}
public boolean Html_elem_delete(String elem_id) {return true;}
public boolean Html_elem_replace_html(String id, String html) {return true;}
public boolean Html_elem_append_above(String id, String html) {return true;}
public boolean Html_gallery_packed_exec() {return true;}
public String Html_js_eval_script(String script) {return "";}
String ExtractAtr(String key, String txt, int pos) {

View File

@@ -92,6 +92,7 @@ public class Swt_kit implements Gfui_kit {
gui_wtr.Log_many("", "", "swt.kit.term:bgn");
cursor.dispose(); gui_wtr.Log_many("", "", "swt.kit.term:cursor");
}
public Shell Main_shell() {return shell;}
public void Kit_term() {
clipboard.Rls(); gui_wtr.Log_many("", "", "swt.kit.term:clipboard");
msg_wkr_stop.Rls(); gui_wtr.Log_many("", "", "swt.kit.term:usrMsgWkr");
@@ -198,6 +199,9 @@ public class Swt_kit implements Gfui_kit {
return 8;
}
}
public boolean Window_is_disposed() {
return shell.isDisposed();
}
public void Set_mnu_popup(GfuiElem owner, Gfui_mnu_grp grp) {
Control control = Swt_control_.cast_or_fail(owner).Under_menu_control();
Swt_popup_grp popup = (Swt_popup_grp)grp;