/* XOWA: the XOWA Offline Wiki Application Copyright (C) 2012-2017 gnosygnu@gmail.com XOWA is licensed under the terms of the General Public License (GPL) Version 3, or alternatively under the terms of the Apache License Version 2.0. You may use XOWA according to either of these licenses as is most appropriate for your project on a case-by-case basis. The terms of each license can be found in the source code repository: GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt */ package gplx.gfui.controls.standards; import gplx.*; import gplx.gfui.*; import gplx.gfui.controls.*; import gplx.gfui.imgs.*; import gplx.gfui.kits.core.*; import gplx.gfui.controls.gxws.*; import gplx.gfui.controls.elems.*; public class GfuiBtn_ { public static GfuiBtn as_(Object obj) {return obj instanceof GfuiBtn ? (GfuiBtn)obj : null;} public static GfuiBtn cast(Object obj) {try {return (GfuiBtn)obj;} catch(Exception exc) {throw Err_.new_type_mismatch_w_exc(exc, GfuiBtn.class, obj);}} public static GfuiBtn msg_(String key, GfuiElem owner, GfoMsg msg) { GfuiBtn rv = new_(key); rv.Owner_(owner); rv.Click_msg_(msg); return rv; } public static GfuiBtn invk_(String key, GfuiElem owner, Gfo_invk invk, String m) { GfuiBtn rv = new_(key); rv.Owner_(owner); rv.Click_invk(Gfo_invk_cmd.New_by_key(invk, m)); return rv; } public static GfuiBtn kit_(Gfui_kit kit, String key, GxwElem elm, Keyval_hash ctorArgs) { GfuiBtn rv = new GfuiBtn(); rv.ctor_kit_GfuiElemBase(kit, key, elm, ctorArgs); return rv; } public static GfuiBtn new_(String key) { GfuiBtn rv = new GfuiBtn(); rv.ctor_GfuiBox_base(GfuiElem_.init_focusAble_true_()); rv.Key_of_GfuiElem_(key); return rv; } @gplx.Internal protected static void FocusBorderRect_set(GfuiBorderMgr borderMgr, GfuiElem elem) { borderMgr.Bounds_sync(RectAdp_.new_(3, 3, elem.Width() - 6, elem.Height() - 6)); } }