blob: ec503c1290191d73f40b9bb225e606155f2667ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#nullable enable
namespace QtVsTools
{
/// <summary>Defines symbols from the QtMenus.vsct file.</summary>
internal sealed partial class QtMenus
{
/// <summary>Defines the "MenuImages" GUIDSymbol and its IDSymbols.</summary>
internal sealed partial class MenuImages
{
public const string GuidString = "d7cf9f1c-0f37-4609-8eb3-72589dc5a5ec";
public static readonly System.Guid Guid = new(GuidString);
public const int ConvertProjectBitmap = 0x0006;
public const int ImportPriFileBitmap = 0x0004;
public const int LaunchDesignerBitmap = 0x0001;
public const int LaunchLinguistBitmap = 0x0002;
public const int LegacyProjectFilterBitmap = 0x0005;
public const int OpenProFileBitmap = 0x0003;
public const int QtLogoBitmap = 0x0007;
}
/// <summary>Defines the "Package" GUIDSymbol and its IDSymbols.</summary>
internal sealed partial class Package
{
public const string GuidString = "15021976-647e-4876-9040-2507afde45d2";
public static readonly System.Guid Guid = new(GuidString);
public const int AddNewQtCMakeItem = 0x1301;
public const int ConvertToQtMsBuild = 0x0401;
public const int ExtensionMenuGroup = 0x0001;
public const int F1QtHelp = 0x0103;
public const int ImportPriFile = 0x0302;
public const int ImportPriFileProject = 0x0801;
public const int ItemContextTsMenuGroup = 0x1100;
public const int LaunchDesigner = 0x0201;
public const int LaunchLinguist = 0x0202;
public const int LaunchMenuGroup = 0x0200;
public const int LegacyProjectFilter = 0x1200;
public const int lReleaseOnItem = 0x1102;
public const int lReleaseOnProject = 0x0902;
public const int lReleaseOnSolution = 0x0602;
public const int lUpdateOnItem = 0x1101;
public const int lUpdateOnProject = 0x0901;
public const int lUpdateOnSolution = 0x0601;
public const int OpenProFile = 0x0301;
public const int OptionsMenuGroup = 0x0500;
public const int OthersMenuGroup = 0x0400;
public const int ProjectContextOthersMenuGroup = 0x1000;
public const int ProjectContextProjectMenuGroup = 0x0800;
public const int ProjectContextTsMenuGroup = 0x0900;
public const int ProjectConvertToQtMsBuild = 0x1001;
public const int ProjectMenuGroup = 0x0300;
public const int ProjectRefreshIntelliSense = 0x1002;
public const int QtClearSettings = 0x0503;
public const int QtMainMenu = 0x0002;
public const int QtOptions = 0x0501;
public const int QtProjectSettings = 0x0402;
public const int QtProjectSettingsProject = 0x1003;
public const int QtProjectSubMenu = 0x0006;
public const int QtProjectSubMenuGroup = 0x0005;
public const int QtSolutionSubMenu = 0x0004;
public const int QtSolutionSubMenuGroup = 0x0003;
public const int QtVersion = 0x0101;
public const int QtVersions = 0x0502;
public const int SolutionContextQtMenuGroup = 0x0700;
public const int SolutionContextTsMenuGroup = 0x0600;
public const int SolutionConvertToQtMsBuild = 0x0701;
public const int SolutionEnableProjectTracking = 0x0702;
public const int VersionMenuGroup = 0x0100;
public const int ViewGettingStarted = 0x0104;
public const int ViewQtHelp = 0x0102;
public const int WorkspaceContextMenuNewItemGroup = 0x1300;
}
/// <summary>
/// Defines the "UICONTEXT_SolutionExistsAndFullyLoaded" GUIDSymbol and its IDSymbols.
/// </summary>
internal sealed partial class UICONTEXT_SolutionExistsAndFullyLoaded
{
public const string GuidString = "10534154-102d-46e2-aba8-a6bfa25ba0be";
public static readonly System.Guid Guid = new(GuidString);
}
/// <summary>
/// Defines the "WorkspaceContextMenu" GUIDSymbol and its IDSymbols.
/// </summary>
internal sealed partial class WorkspaceContextMenu
{
public const string GuidString = "cfb400f1-5c60-4f3c-856e-180d28def0b7";
public static readonly System.Guid Guid = new(GuidString);
public const int NewQtItemSubmenu = 0x2200;
}
}
}
|