X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTDesktop.java;h=20e6fd04c405e9edc918cdca4821264976929a4d;hb=9f613a0c54cb97e9305fd87ce8eb2f76ac82804e;hp=07a29a3397b64847bb0a0d6fa8e439ac11bfa583;hpb=9245321388306b5b49d6385ce2f46ea6a82ab619;p=fanfix.git diff --git a/src/jexer/TDesktop.java b/src/jexer/TDesktop.java index 07a29a3..20e6fd0 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"), @@ -33,7 +33,6 @@ import jexer.bits.GraphicsChars; import jexer.event.TKeypressEvent; import jexer.event.TMenuEvent; import jexer.event.TMouseEvent; -import jexer.event.TResizeEvent; /** * TDesktop is a special-class window that is drawn underneath everything @@ -48,10 +47,14 @@ import jexer.event.TResizeEvent; *
  • 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. * @@ -65,6 +68,10 @@ public class TDesktop extends TWindow { setActive(false); } + // ------------------------------------------------------------------------ + // TWindow ---------------------------------------------------------------- + // ------------------------------------------------------------------------ + /** * The default TDesktop draws a hatch character across everything. */