X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTDesktop.java;h=fd56a7fb55abbe8d3d71b0c5e6f6310aa2dd04e3;hb=4614b3bf2220b2ddc27ae87aeb5ec893451d4e60;hp=107427264eaeafa077266fadcef6b13fc4ff9614;hpb=591688f594b8268b0e940d3144fd0dac0885a74c;p=fanfix.git diff --git a/src/jexer/TDesktop.java b/src/jexer/TDesktop.java index 1074272..fd56a7f 100644 --- a/src/jexer/TDesktop.java +++ b/src/jexer/TDesktop.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2017 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -47,23 +47,30 @@ import jexer.event.TMouseEvent; *
  • Keypress events are seen if no other windows are open.
  • *
  • Menu events are seen if no other windows are open.
  • *
  • Command events are seen if no other windows are open.
  • - * */ public class TDesktop extends TWindow { + // ------------------------------------------------------------------------ + // Constructors ----------------------------------------------------------- + // ------------------------------------------------------------------------ + /** * Public constructor. * * @param parent parent application */ public TDesktop(final TApplication parent) { - super(parent, "", 0, 0, parent.getScreen().getWidth(), - parent.getScreen().getHeight() - 1); + parent.getDesktopBottom() - parent.getDesktopTop()); setActive(false); } + // ------------------------------------------------------------------------ + // TWindow ---------------------------------------------------------------- + // ------------------------------------------------------------------------ + /** * The default TDesktop draws a hatch character across everything. */