* @param title the title of the window
* @param numLines number of lines to show at a time
* @param colorEnabled true to enable a colored console
*/
public ConsoleFrame(@NonNull String title, int numLines, boolean colorEnabled) {
messageLog = new MessageLog(numLines, colorEnabled);
trayRunningIcon = SwingHelper.readIconImage(Launcher.class, "tray_ok.png");
trayClosedIcon = SwingHelper.readIconImage(Launcher.class, "tray_closed.png");
setTitle(title);
setIconImage(trayRunningIcon);