/* * 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.commandparser.commands.global; import com.dmdirc.CustomWindow; import com.dmdirc.commandparser.BaseCommandInfo; import com.dmdirc.commandparser.CommandArguments; import com.dmdirc.commandparser.CommandInfo; import com.dmdirc.commandparser.CommandType; import com.dmdirc.commandparser.commands.BaseCommand; import com.dmdirc.commandparser.commands.IntelligentCommand; import com.dmdirc.commandparser.commands.context.CommandContext; import com.dmdirc.config.GlobalConfig; import com.dmdirc.interfaces.CommandController; import com.dmdirc.interfaces.Connection; import com.dmdirc.events.eventbus.EventBus; import com.dmdirc.interfaces.WindowModel; import com.dmdirc.interfaces.config.AggregateConfigProvider; import com.dmdirc.ui.WindowManager; import com.dmdirc.ui.input.AdditionalTabTargets; import com.dmdirc.ui.messages.BackBufferFactory; import javax.annotation.Nonnull; import javax.inject.Inject; import java.util.Optional; /** * Opens a new window. */ public class OpenWindow extends BaseCommand implements IntelligentCommand { /** A command info object for this command. */ public static final CommandInfo INFO = new BaseCommandInfo("openwindow", "openwindow [--server|--child] [title] " + "- opens a window with the specified name and title", CommandType.TYPE_GLOBAL); /** Window management. */ private final WindowManager windowManager; /** The bus to dispatch events on. */ private final EventBus eventBus; /** The config provider to retrieve settings from. */ private final AggregateConfigProvider configProvider; /** Back buffer factory. */ private final BackBufferFactory backBufferFactory; /** * Creates a new instance of this command. */ @Inject public OpenWindow( final CommandController controller, final WindowManager windowManager, final EventBus eventBus, @GlobalConfig final AggregateConfigProvider configProvider, final BackBufferFactory backBufferFactory) { super(controller); this.windowManager = windowManager; this.eventBus = eventBus; this.configProvider = configProvider; this.backBufferFactory = backBufferFactory; } @Override public void execute(@Nonnull final WindowModel origin, final CommandArguments args, final CommandContext context) { int start = 0; WindowModel parent = null; if (args.getArguments().length > 0 && "--server".equals(args.getArguments()[0])) { final Optional connection = origin.getConnection(); if (!connection.isPresent()) { showError(origin, args.isSilent(), "This window doesn't have an associated server."); return; } parent = connection.get().getWindowModel(); start = 1; } else if (args.getArguments().length > 0 && "--child".equals(args.getArguments()[0])) { parent = origin; start = 1; } if (args.getArguments().length == start || args.getArguments()[start].isEmpty()) { showUsage(origin, args.isSilent(), "openwindow", "[--server|--child] [title]"); } else { final WindowModel window; if (parent == null) { window = windowManager.findCustomWindow(args.getArguments()[start]); } else { window = windowManager.findCustomWindow(parent, args.getArguments()[start]); } final String title = args.getArguments().length > start + 1 ? args.getArgumentsAsString(start + 1) : args.getArguments()[start]; if (window == null) { final CustomWindow newWindow; if (parent == null) { newWindow = new CustomWindow(args.getArguments()[start], title, configProvider, eventBus, backBufferFactory); windowManager.addWindow(newWindow); } else { newWindow = new CustomWindow(args.getArguments()[start], title, parent, backBufferFactory); windowManager.addWindow(parent, newWindow); } } else { showError(origin, args.isSilent(), "A custom window by that name already exists."); } } } @Override public AdditionalTabTargets getSuggestions(final int arg, final IntelligentCommandContext context) { final AdditionalTabTargets res = new AdditionalTabTargets(); if (arg == 0) { res.add("--server"); res.add("--child"); } return res; } }