/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt VS Tools. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ using System; using System.ComponentModel.Design; using System.Windows.Forms; using Microsoft.VisualStudio.Shell; using EnvDTE; namespace QtVsTools { using Core; using VisualStudio; /// /// Command handler /// internal sealed class QtMainMenu { /// /// Command menu group (command set GUID). /// private static readonly Guid MainMenuGuid = new Guid("58f83fff-d39d-4c66-810b-2702e1f04e73"); /// /// Gets the instance of the command. /// private static QtMainMenu Instance { get; set; } /// /// Initializes the singleton instance of the command. /// public static void Initialize() { Instance = new QtMainMenu(); } /// /// Command ID. /// private enum CommandId { QtVersionId = 0x0500, ViewQtHelpId = 0x0501, ViewGettingStartedId = 0x0503, LaunchDesignerId = 0x0100, LaunchLinguistId = 0x0101, OpenProFileId = 0x0102, ImportPriFileId = 0x0103, ExportPriFileId = 0x0104, ExportProFileId = 0x0105, ConvertToQtMsBuild = 0x0130, QtProjectSettingsId = 0x0109, ChangeProjectQtVersionId = 0x0126, QtOptionsId = 0x0110, QtVersionsId = 0x0111, } /// /// Initializes a new instance of the class. /// Adds our command handlers for menu (commands must exist in the command table file) /// /// Owner package, not null. private QtMainMenu() { var commandService = VsServiceProvider .GetService(); if (commandService == null) return; foreach (var id in Enum.GetValues(typeof(CommandId))) { var command = new OleMenuCommand(execHandler, new CommandID(MainMenuGuid, (int)id)); command.BeforeQueryStatus += beforeQueryStatus; commandService.AddCommand(command); } } private void execHandler(object sender, EventArgs e) { ThreadHelper.ThrowIfNotOnUIThread(); var command = sender as OleMenuCommand; if (command == null) return; switch ((CommandId)command.CommandID.ID) { case CommandId.ViewQtHelpId: VsShellUtilities.OpenSystemBrowser("https://www.qt.io/developers"); break; case CommandId.ViewGettingStartedId: VsShellUtilities.OpenSystemBrowser("https://doc.qt.io/qtvstools/qtvstools-getting-started.html"); break; case CommandId.LaunchDesignerId: QtVsToolsPackage.Instance.QtDesigner.Start(hideWindow: false); break; case CommandId.LaunchLinguistId: QtVsToolsPackage.Instance.QtLinguist.Start(hideWindow: false); break; case CommandId.OpenProFileId: ExtLoader.ImportProFile(); break; case CommandId.ImportPriFileId: ExtLoader.ImportPriFile(HelperFunctions.GetSelectedQtProject(QtVsToolsPackage.Instance.Dte)); break; case CommandId.ExportPriFileId: ExtLoader.ExportPriFile(); break; case CommandId.ExportProFileId: ExtLoader.ExportProFile(); break; case CommandId.ConvertToQtMsBuild: QtMsBuildConverter.SolutionToQtMsBuild(); break; case CommandId.QtProjectSettingsId: { var pro = HelperFunctions.GetSelectedQtProject(QtVsToolsPackage.Instance.Dte); int projectVersion = QtProject.GetFormatVersion(pro); if (projectVersion >= Resources.qtMinFormatVersion_Settings) { QtVsToolsPackage.Instance.Dte.ExecuteCommand("Project.Properties"); } else if (pro != null) { Legacy.QtMenu.ShowFormProjectQtSettings(pro); } else { MessageBox.Show(SR.GetString("NoProjectOpened")); } } break; case CommandId.ChangeProjectQtVersionId: Legacy.QtMenu.ShowFormChangeProjectQtVersion(); break; case CommandId.QtOptionsId: QtVsToolsPackage.Instance.ShowOptionPage(typeof(Options.QtOptionsPage)); break; case CommandId.QtVersionsId: QtVsToolsPackage.Instance.ShowOptionPage(typeof(Options.QtVersionsPage)); break; } } private void beforeQueryStatus(object sender, EventArgs e) { ThreadHelper.ThrowIfNotOnUIThread(); var command = sender as OleMenuCommand; if (command == null) return; var project = HelperFunctions.GetSelectedProject(QtVsToolsPackage.Instance.Dte); switch ((CommandId)command.CommandID.ID) { case CommandId.ViewQtHelpId: case CommandId.ViewGettingStartedId: command.Visible = command.Enabled = true; break; case CommandId.QtVersionId: command.Text = "Qt Visual Studio Tools version " + Version.USER_VERSION; command.Visible = true; command.Enabled = false; break; case CommandId.LaunchDesignerId: case CommandId.LaunchLinguistId: case CommandId.OpenProFileId: case CommandId.QtOptionsId: case CommandId.QtVersionsId: command.Visible = true; command.Enabled = true; break; case CommandId.ImportPriFileId: case CommandId.ExportPriFileId: case CommandId.ExportProFileId: command.Visible = true; command.Enabled = HelperFunctions.IsVsToolsProject(project); break; case CommandId.QtProjectSettingsId: { var status = vsCommandStatus.vsCommandStatusSupported; if (project != null) { if (HelperFunctions.IsVsToolsProject(project)) status |= vsCommandStatus.vsCommandStatusEnabled; else if (HelperFunctions.IsQtProject(project)) status |= vsCommandStatus.vsCommandStatusInvisible; } command.Enabled = ((status & vsCommandStatus.vsCommandStatusEnabled) != 0); command.Visible = ((status & vsCommandStatus.vsCommandStatusInvisible) == 0); } break; case CommandId.ChangeProjectQtVersionId: { var status = vsCommandStatus.vsCommandStatusSupported; if ((project == null) || HelperFunctions.IsVsToolsProject(project)) status |= vsCommandStatus.vsCommandStatusInvisible; else if (HelperFunctions.IsQtProject(project)) status |= vsCommandStatus.vsCommandStatusEnabled; else status |= vsCommandStatus.vsCommandStatusInvisible; command.Enabled = ((status & vsCommandStatus.vsCommandStatusEnabled) != 0); command.Visible = ((status & vsCommandStatus.vsCommandStatusInvisible) == 0); } break; case CommandId.ConvertToQtMsBuild: { command.Visible = true; command.Enabled = (QtVsToolsPackage.Instance.Dte.Solution != null && QtVsToolsPackage.Instance.Dte.Solution.Projects != null && QtVsToolsPackage.Instance.Dte.Solution.Projects.Count > 0); } break; } } } }