2015-07-12 21:10:02 -04:00
|
|
|
/*
|
|
|
|
|
XOWA: the XOWA Offline Wiki Application
|
|
|
|
|
Copyright (C) 2012 gnosygnu@gmail.com
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2016-06-19 23:58:10 -04:00
|
|
|
package gplx.gfui.controls.customs; import gplx.*; import gplx.gfui.*; import gplx.gfui.controls.*;
|
|
|
|
|
import gplx.gfui.draws.*; import gplx.gfui.ipts.*; import gplx.gfui.layouts.*; import gplx.gfui.controls.windows.*;
|
|
|
|
|
public class GfuiStatusBoxBnd implements Gfo_invk {
|
2015-07-12 21:10:02 -04:00
|
|
|
public GfuiStatusBox Box() {return statusBox;} GfuiStatusBox statusBox = GfuiStatusBox_.new_("statusBox");
|
|
|
|
|
void ShowTime() {
|
|
|
|
|
statusBox.ExecUsrMsg(UsrMsgWkr_.Type_Note, UsrMsg.new_(DateAdp_.Now().XtoStr_gplx_long()));
|
|
|
|
|
}
|
|
|
|
|
public Object Invk(GfsCtx ctx, int ikey, String k, GfoMsg m) {
|
|
|
|
|
if (ctx.Match(k, Invk_ShowTime)) ShowTime();
|
2016-06-19 23:58:10 -04:00
|
|
|
else return Gfo_invk_.Rv_unhandled;
|
2015-07-12 21:10:02 -04:00
|
|
|
return this;
|
2016-06-19 23:58:10 -04:00
|
|
|
} public static final String Invk_ShowTime = "ShowTime";
|
2015-07-12 21:10:02 -04:00
|
|
|
public static GfuiStatusBoxBnd gft_(GfuiWin owner) {
|
|
|
|
|
GfuiStatusBoxBnd rv = new GfuiStatusBoxBnd();
|
|
|
|
|
rv.ctor_GfuiStatusBoxBnd(owner);
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
void ctor_GfuiStatusBoxBnd(GfuiWin win) {
|
|
|
|
|
IptBnd_.cmd_to_(IptCfg_.Null, win, this, GfuiStatusBoxBnd.Invk_ShowTime, IptKey_.add_(IptKey_.Ctrl, IptKey_.Shift, IptKey_.T));
|
|
|
|
|
statusBox.Owner_(win).Visible_off_().BackColor_(ColorAdp_.Black).TextAlignH_right_().ForeColor_(ColorAdp_.Green);
|
|
|
|
|
win.Lyt().SubLyts().Add(GftGrid.new_().Bands_dir_(DirInt.Bwd).Bands_add(GftBand.new_().Cells_num_(1).Len1_abs_(13)));
|
|
|
|
|
}
|
|
|
|
|
}
|