/* * Copyright (c) 2006-2017 DMDirc Developers * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS * OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package com.dmdirc; import com.dmdirc.commandparser.CommandType; import com.dmdirc.commandparser.parsers.GlobalCommandParser; import com.dmdirc.config.GlobalConfig; import com.dmdirc.events.CommandErrorEvent; import com.dmdirc.interfaces.Connection; import com.dmdirc.events.eventbus.EventBus; import com.dmdirc.interfaces.config.AggregateConfigProvider; import com.dmdirc.interfaces.config.ConfigChangeListener; import com.dmdirc.ui.WindowManager; import com.dmdirc.ui.core.components.WindowComponent; import com.dmdirc.ui.input.TabCompleterFactory; import com.dmdirc.ui.messages.BackBufferFactory; import java.util.Arrays; import java.util.Optional; import javax.inject.Inject; import javax.inject.Provider; import javax.inject.Singleton; /** * A window which can be used to execute global commands. */ @Singleton public class GlobalWindow extends FrameContainer { /** * Creates a new instance of GlobalWindow. */ @Inject public GlobalWindow(@GlobalConfig final AggregateConfigProvider config, final GlobalCommandParser parser, final TabCompleterFactory tabCompleterFactory, final EventBus eventBus, final BackBufferFactory backBufferFactory) { super("icon", "Global", "(Global)", config, backBufferFactory, eventBus, Arrays.asList(WindowComponent.TEXTAREA.getIdentifier(), WindowComponent.INPUTFIELD.getIdentifier())); initBackBuffer(); setInputModel(new DefaultInputModel( this::sendLine, parser, tabCompleterFactory.getTabCompleter(config, CommandType.TYPE_GLOBAL), this::getMaxLineLength )); } @Override public Optional getConnection() { return Optional.empty(); } private void sendLine(final String line) { getEventBus().publishAsync( new CommandErrorEvent(this, "You may only enter commands in the global window.")); } private int getMaxLineLength() { return -1; } /** Handles the state of the global window. */ @Singleton public static class GlobalWindowManager implements ConfigChangeListener { /** Provider to use to obtain global window instances. */ private final Provider globalWindowProvider; /** The global configuration to read settings from. */ private final AggregateConfigProvider globalConfig; /** The provider to use to retrieve a window manager. */ private final Provider windowManagerProvider; /** * Creates a new instance of {@link GlobalWindowManager}. * * @param globalWindowProvider The provider to use to obtain global windows. * @param globalConfig Configuration provider to read settings from. * @param windowManagerProvider The provider to use to retrieve a window manager. */ @Inject public GlobalWindowManager(final Provider globalWindowProvider, @GlobalConfig final AggregateConfigProvider globalConfig, final Provider windowManagerProvider) { this.globalWindowProvider = globalWindowProvider; this.globalConfig = globalConfig; this.windowManagerProvider = windowManagerProvider; } @Override public void configChanged(final String domain, final String key) { updateWindowState(); } /** * Initialises the global window if it's enabled in the config. */ public void init() { globalConfig.addChangeListener("general", "showglobalwindow", this); updateWindowState(); } /** * Updates the state of the global window in line with the general.showglobalwindow config * setting. */ protected void updateWindowState() { final WindowManager windowManager = windowManagerProvider.get(); final GlobalWindow globalWindow = globalWindowProvider.get(); final boolean globalWindowExists = windowManager.getRootWindows().contains(globalWindow); if (globalConfig.getOptionBool("general", "showglobalwindow")) { if (!globalWindowExists) { windowManager.addWindow(globalWindow); } } else { if (globalWindowExists) { globalWindow.close(); } } } } }