aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.Wizards/ProjectWizard/ConfigPage.xaml.cs
blob: e069dece2b33092da1f9f102e54815f1d7ddbb92 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/***************************************************************************************************
 Copyright (C) 2024 The Qt Company Ltd.
 SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using Microsoft.Win32;

namespace QtVsTools.Wizards.ProjectWizard
{
    using Common;
    using Core;
    using QtVsTools.Common;

    using static Common.WizardData;
    using static Core.Common.Utils;

    public partial class ConfigPage : WizardPage
    {
        interface ICloneable<T> where T : ICloneable<T>
        {
            T Clone();
        }

        class Module : ICloneable<Module>
        {
            public string Name { get; set; }
            public string Id { get; set; }
            public bool IsSelected { get; set; }
            public bool IsReadOnly { get; set; }
            public bool IsEnabled => !IsReadOnly;

            public Module Clone()
            {
                return new Module
                {
                    Name = Name,
                    Id = Id,
                    IsSelected = IsSelected,
                    IsReadOnly = IsReadOnly
                };
            }
        }

        class Config : ICloneable<Config>, IWizardConfiguration
        {
            public ConfigPage ConfigPage { get; set; }
            public string Name { get; set; }
            public VersionInformation QtVersion { get; set; }
            public string QtVersionName { get; set; }
            public string QtVersionPath { get; set; }
            public string Target { get; set; }
            public string Platform { get; set; }
            public bool IsDebug { get; set; }
            public bool IsEnabled { get; set; }

            public Dictionary<string, Module> Modules { get; set; }

            public IEnumerable<Module> AllModules
                => Modules.Values.OrderBy(module => module.Name);
            public IEnumerable<Module> SelectedModules
                => Modules.Values.Where(m => m.IsSelected);

            IEnumerable<string> IWizardConfiguration.Modules
            {
                get
                {
                    if (ConfigPage.ProjectModel == ProjectModels.CMake) {
                        return ConfigPage.DefaultModules
                            .Where(module => module.IsSelected)
                            .Select(module => module.Id)
                            .ToList();
                    }
                    return SelectedModules.SelectMany(m => m.Id.Split(' '));
                }
            }

            public Config Clone()
            {
                return new Config
                {
                    ConfigPage = ConfigPage,
                    Name = Name,
                    QtVersion = QtVersion,
                    QtVersionName = QtVersionName,
                    Target = Target,
                    Platform = Platform,
                    IsDebug = IsDebug,
                    Modules = AllModules
                        .Select(m => m.Clone())
                        .ToDictionary(m => m.Name)
                };
            }
        }

        class CloneableList<T> : List<T> where T : ICloneable<T>
        {
            public CloneableList()
            { }

            public CloneableList(IEnumerable<T> collection) : base(collection)
            { }

            public CloneableList<T> Clone()
            {
                return new CloneableList<T>(this.Select(x => x.Clone()));
            }
        }

        const string QT_VERSION_DEFAULT = "<Default>";
        const string QT_VERSION_BROWSE = "<Browse...>";

        private IEnumerable<string> qtVersionList;

        readonly QtVersionManager qtVersionManager = QtVersionManager.The;
        readonly VersionInformation defaultQtVersionInfo;

        CloneableList<Config> defaultConfigs;
        List<Config> currentConfigs;
        bool initialNextButtonIsEnabled;
        bool initialFinishButtonIsEnabled;

        public ProjectModels ProjectModel => (ProjectModels)ProjectModelSelection.SelectedIndex;

        public ConfigPage()
        {
            InitializeComponent();

            string defaultQtVersionName = qtVersionManager.GetDefaultVersion();
            defaultQtVersionInfo = qtVersionManager.GetVersionInfo(defaultQtVersionName);

            DataContext = this;
            Loaded += OnLoaded;
        }

        private List<Module> DefaultModules { get; set; } = new();

        private void OnLoaded(object sender, RoutedEventArgs e)
        {
            Loaded -= OnLoaded;

            qtVersionList = new[] { QT_VERSION_DEFAULT, QT_VERSION_BROWSE }
                .Union(QtVersionManager.GetVersions());

            if (defaultQtVersionInfo != null)
                SetupDefaultConfigsAndConfigTable(defaultQtVersionInfo);

            initialNextButtonIsEnabled = NextButton.IsEnabled;
            initialFinishButtonIsEnabled = FinishButton.IsEnabled;

            Validate();
        }

        private void SetupDefaultConfigsAndConfigTable(VersionInformation versionInfo)
        {
            if (versionInfo == null)
                return;

            DefaultModules = QtModules.Instance.GetAvailableModules(versionInfo.qtMajor)
                .Where(mi => mi.Selectable)
                .Select(mi => new Module
                {
                    Name = mi.Name,
                    Id = mi.proVarQT,
                    IsSelected = Data.DefaultModules.Contains(mi.LibraryPrefix),
                    IsReadOnly = Data.DefaultModules.Contains(mi.LibraryPrefix)
                }).ToList();

            defaultConfigs = new CloneableList<Config> {
                new() {
                    ConfigPage = this,
                    Name = "Debug",
                    IsDebug = true,
                    QtVersion = versionInfo,
                    QtVersionName = versionInfo.name,
                    Target = versionInfo.isWinRT()
                        ? ProjectTargets.WindowsStore.Cast<string>()
                        : ProjectTargets.Windows.Cast<string>(),
                    Platform
                        = versionInfo.platform() == Platform.x86
                            ? ProjectPlatforms.Win32.Cast<string>()
                            : versionInfo.platform() == Platform.x64
                                ? ProjectPlatforms.X64.Cast<string>()
                                : versionInfo.platform() == Platform.arm64
                                    ? ProjectPlatforms.ARM64.Cast<string>()
                                    : string.Empty,
                    Modules = DefaultModules.ToDictionary(m => m.Name)
                },
                new() {
                    ConfigPage = this,
                    Name = "Release",
                    IsDebug = false,
                    QtVersion = versionInfo,
                    QtVersionName = versionInfo.name,
                    Target = versionInfo.isWinRT()
                        ? ProjectTargets.WindowsStore.Cast<string>()
                        : ProjectTargets.Windows.Cast<string>(),
                    Platform
                        = versionInfo.platform() == Platform.x86
                            ? ProjectPlatforms.Win32.Cast<string>()
                            : versionInfo.platform() == Platform.x64
                                ? ProjectPlatforms.X64.Cast<string>()
                                : versionInfo.platform() == Platform.arm64
                                    ? ProjectPlatforms.ARM64.Cast<string>()
                                    : string.Empty,
                    Modules = DefaultModules.ToDictionary(m => m.Name)
                }
            };
            currentConfigs = defaultConfigs.Clone();
            ConfigTable.ItemsSource = currentConfigs;
        }

        /// <summary>
        /// Callback to validate selected configurations.
        /// Must return an error message in case of failed validation.
        /// Otherwise, return empty string or null.
        /// </summary>
        public Func<IEnumerable<IWizardConfiguration>, string> ValidateConfigs { get; set; }

        public bool BrowseQtVersion { get; set; }

        private void Validate()
        {
            var errorMessage = "";
            var errorPanelVisibility = Visibility.Visible;
            var browseQtVersion = false;
            var nextButtonIsEnabled = false;
            var finishButtonIsEnabled = false;

            if (currentConfigs == null) {
                errorMessage = "No registered Qt version found. Click here to browse for a Qt version.";
                browseQtVersion = true;
            } else if (currentConfigs // "$(Configuration)|$(Platform)" must be unique
                .GroupBy(c => $"{c.Name}|{c.Platform}")
                .Any(g => g.Count() > 1)) {
                errorMessage = "(Configuration, Platform) must be unique";
            } else if (ValidateConfigs?.Invoke(currentConfigs) is { Length: > 0 } errorMsg) {
                errorMessage = errorMsg;
            } else {
                errorPanelVisibility = Visibility.Hidden;
                nextButtonIsEnabled = initialNextButtonIsEnabled;
                finishButtonIsEnabled = initialFinishButtonIsEnabled;
            }

            ErrorMsg.Content = errorMessage;
            ErrorPanel.Visibility = errorPanelVisibility;
            BrowseQtVersion = browseQtVersion;
            NextButton.IsEnabled = nextButtonIsEnabled;
            FinishButton.IsEnabled = finishButtonIsEnabled;
        }

        void RemoveConfig_Click(object sender, RoutedEventArgs e)
        {
            if (sender is Button buttonRemove
                && GetBinding(buttonRemove) is Config config) {
                currentConfigs.Remove(config);
                if (!currentConfigs.Any()) {
                    currentConfigs = defaultConfigs.Clone();
                    ConfigTable.ItemsSource = currentConfigs;
                }
                ConfigTable.Items.Refresh();
                Validate();
            }
        }

        void DuplicateConfig_Click(object sender, RoutedEventArgs e)
        {
            if (sender is Button buttonDuplicate
                && GetBinding(buttonDuplicate) is Config config) {
                currentConfigs.Add(config.Clone());
                ConfigTable.Items.Refresh();
                Validate();
            }
        }

        void Name_TextChanged(object sender, TextChangedEventArgs e)
        {
            if (sender is TextBox txt && GetBinding(txt) is Config cfg)
                cfg.Name = txt.Text;
            Validate();
        }

        void QtVersion_ComboBox_Loaded(object sender, RoutedEventArgs e)
        {
            if (sender is ComboBox comboBoxQtVersion
                && GetBinding(comboBoxQtVersion) is Config config) {
                comboBoxQtVersion.IsEnabled = false;
                comboBoxQtVersion.ItemsSource = qtVersionList;
                comboBoxQtVersion.Text = config.QtVersionName;
                comboBoxQtVersion.IsEnabled = true;
            }
        }

        private static string BrowseForAndGetQtVersion()
        {
            var openFileDialog = new OpenFileDialog
            {
                Filter = "qmake|qmake.exe;qmake.bat"
            };
            if (openFileDialog.ShowDialog() != true)
                return null;

            IEnumerable<string> binPath = Path.GetDirectoryName(openFileDialog.FileName)
                ?.Split(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
            binPath ??= new List<string>();
            var lastDirName = binPath.LastOrDefault();
            if ("bin".Equals(lastDirName, IgnoreCase))
                binPath = binPath.Take(binPath.Count() - 1);
            return string.Join(Path.DirectorySeparatorChar.ToString(), binPath);
        }

        void QtVersion_TextChanged(object sender, TextChangedEventArgs e)
        {
            if (sender is not ComboBox { IsEnabled: true } comboBoxQtVersion
                || GetBinding(comboBoxQtVersion) is not Config config
                || config.QtVersionName == comboBoxQtVersion.Text)
                return;

            var oldQtVersion = config.QtVersion;
            switch (comboBoxQtVersion.Text) {
            case QT_VERSION_DEFAULT:
                config.QtVersion = defaultQtVersionInfo;
                config.QtVersionName = defaultQtVersionInfo.name;
                config.QtVersionPath = defaultQtVersionInfo.qtDir;
                comboBoxQtVersion.Text = defaultQtVersionInfo.name;
                break;
            case QT_VERSION_BROWSE:
                if (BrowseForAndGetQtVersion() is {} qtVersion) {
                    if (VersionInformation.Get(qtVersion) is {} versionInfo) {
                        versionInfo.name = qtVersion;
                        config.QtVersion = versionInfo;
                        config.QtVersionName = versionInfo.name;
                        config.QtVersionPath = config.QtVersion.qtDir;
                    }
                }
                comboBoxQtVersion.Text = config.QtVersionName;
                break;
            default:
                if (QtVersionManager.GetVersions().Contains(comboBoxQtVersion.Text)) {
                    config.QtVersion = qtVersionManager.GetVersionInfo(comboBoxQtVersion.Text);
                    config.QtVersionName = comboBoxQtVersion.Text;
                    config.QtVersionPath = qtVersionManager.GetInstallPath(comboBoxQtVersion.Text);
                } else {
                    config.QtVersion = null;
                    config.QtVersionName = config.QtVersionPath = comboBoxQtVersion.Text;
                }
                break;
            }

            if (oldQtVersion != config.QtVersion) {
                if (config.QtVersion != null) {
                    config.Target = config.QtVersion.isWinRT()
                        ? ProjectTargets.WindowsStore.Cast<string>()
                        : ProjectTargets.Windows.Cast<string>();
                    config.Platform
                        = config.QtVersion.platform() == Platform.x86
                            ? ProjectPlatforms.Win32.Cast<string>()
                            : config.QtVersion.platform() == Platform.x64
                                ? ProjectPlatforms.X64.Cast<string>()
                                : config.QtVersion.platform() == Platform.arm64
                                    ? ProjectPlatforms.ARM64.Cast<string>()
                                    : string.Empty;
                    config.Modules =
                        QtModules.Instance.GetAvailableModules(config.QtVersion.qtMajor)
                            .Where(mi => mi.Selectable)
                            .Select(mi => new Module
                            {
                                Name = mi.Name,
                                Id = mi.proVarQT,
                                IsSelected = Data.DefaultModules.Contains(mi.LibraryPrefix),
                                IsReadOnly = Data.DefaultModules.Contains(mi.LibraryPrefix)
                            }).ToDictionary(m => m.Name);
                } else if (config.QtVersionPath.StartsWith("SSH:")) {
                    config.Target = ProjectTargets.LinuxSSH.Cast<string>();
                } else if (config.QtVersionPath.StartsWith("WSL:")) {
                    config.Target = ProjectTargets.LinuxWSL.Cast<string>();
                }
                ConfigTable.Items.Refresh();
            }
            Validate();
        }

        void Target_ComboBox_Loaded(object sender, RoutedEventArgs e)
        {
            if (sender is ComboBox comboBoxTarget
                && GetBinding(comboBoxTarget) is Config config) {
                comboBoxTarget.IsEnabled = false;
                comboBoxTarget.ItemsSource = EnumExt.GetValues<string>(typeof(ProjectTargets));
                comboBoxTarget.Text = config.Target;
                comboBoxTarget.IsEnabled = true;
            }
        }

        void Target_TextChanged(object sender, TextChangedEventArgs e)
        {
            if (sender is ComboBox {IsEnabled: true} comboBoxTarget
                && GetBinding(comboBoxTarget) is Config config
                && config.Target != comboBoxTarget.Text) {
                config.Target = comboBoxTarget.Text;
                ConfigTable.Items.Refresh();
                Validate();
            }
        }

        void Platform_ComboBox_Loaded(object sender, RoutedEventArgs e)
        {
            if (sender is ComboBox comboBoxPlatform
                && GetBinding(comboBoxPlatform) is Config config) {
                comboBoxPlatform.IsEnabled = false;
                comboBoxPlatform.ItemsSource = EnumExt.GetValues<string>(typeof(ProjectPlatforms));
                comboBoxPlatform.Text = config.Platform;
                comboBoxPlatform.IsEnabled = true;
            }
        }

        void Platform_TextChanged(object sender, TextChangedEventArgs e)
        {
            if (sender is ComboBox {IsEnabled: true} comboBoxPlatform
                && GetBinding(comboBoxPlatform) is Config config
                && config.Platform != comboBoxPlatform.Text) {
                config.Platform = comboBoxPlatform.Text;
                ConfigTable.Items.Refresh();
                Validate();
            }
        }

        void Debug_Click(object sender, RoutedEventArgs e)
        {
            if (sender is not CheckBox checkBox || GetBinding(checkBox) is not Config config)
                return;

            config.IsDebug = checkBox.IsChecked ?? false;
            if (config.IsDebug && config.Name.EndsWith("Release")) {
                config.Name =
                    $"{config.Name.Substring(0, config.Name.Length - "Release".Length)}Debug";
                ConfigTable.Items.Refresh();
            } else if (!config.IsDebug && config.Name.EndsWith("Debug")) {
                config.Name =
                    $"{config.Name.Substring(0, config.Name.Length - "Debug".Length)}Release";
                ConfigTable.Items.Refresh();
            }
            Validate();
        }

        void Module_Click(object sender, RoutedEventArgs e)
        {
            if (sender is CheckBox checkBoxModule
                && (checkBoxModule.TemplatedParent as ContentPresenter)?.Content is Module
                && GetBinding(checkBoxModule) is Config config
                && FindAncestor(checkBoxModule, "Modules") is ComboBox comboBoxModules
                && FindDescendant(comboBoxModules, "SelectedModules") is ListView selectedModules) {
                selectedModules.ItemsSource = config.SelectedModules;
                Validate();
            }
        }

        protected override void OnNextButtonClick(object sender, RoutedEventArgs e)
        {
            Data.ProjectModel = ProjectModel;
            Data.Configs = currentConfigs;
            base.OnNextButtonClick(sender, e);
        }

        protected override void OnFinishButtonClick(object sender, RoutedEventArgs e)
        {
            Data.ProjectModel = ProjectModel;
            Data.Configs = currentConfigs;
            base.OnFinishButtonClick(sender, e);
        }

        static object GetBinding(FrameworkElement control)
        {
            if (control?.BindingGroup == null)
                return null;
            return control.BindingGroup.Items.Count == 0 ? null : control.BindingGroup.Items[0];
        }

        static FrameworkElement FindAncestor(FrameworkElement control, string name)
        {
            while (control != null && control.Name != name) {
                object parent = control.Parent
                    ?? control.TemplatedParent
                    ?? VisualTreeHelper.GetParent(control);
                control = parent as FrameworkElement;
            }
            return control;
        }

        static FrameworkElement FindDescendant(FrameworkElement control, string name)
        {
            var stack = new Stack<FrameworkElement>(new[] { control });
            while (stack.Any()) {
                control = stack.Pop();
                if (control?.Name == name && control is {} result)
                    return result;
                for (int i = 0; i < VisualTreeHelper.GetChildrenCount(control); ++i) {
                    if (VisualTreeHelper.GetChild(control, i) is FrameworkElement child)
                        stack.Push(child);
                }
            }
            return null;
        }

        private void QtMSBuild_Selected(object sender, RoutedEventArgs e)
        {
            if (ConfigTable != null)
                ConfigTable.Columns.Last().Visibility = Visibility.Visible;
        }

        private void QtCMake_Selected(object sender, RoutedEventArgs e)
        {
            if (ConfigTable != null)
                ConfigTable.Columns.Last().Visibility = Visibility.Hidden;
        }

        private void ErrorMsg_OnMouseDown(object sender, MouseButtonEventArgs e)
        {
            var qmakePath = BrowseForAndGetQtVersion();
            if (VersionInformation.Get(qmakePath) is not {} versionInfo)
                return;
            versionInfo.name = qmakePath;

            try {
                var qtVersionDir = Path.GetDirectoryName(qmakePath);
                var versionName = $"{Path.GetFileName(qtVersionDir)}"
                    + $"_{Path.GetFileName(qmakePath)}".Replace(" ", "_");

                QtVersionManager.SaveVersion(versionName, qmakePath);
                QtVersionManager.SaveDefaultVersion(versionName);
                versionInfo.name = versionName;
            } catch (Exception exception) {
                Messages.Print("Could not save Qt version.");
                exception.Log();
            }

            qtVersionList = new[] { QT_VERSION_BROWSE }.Union(QtVersionManager.GetVersions());

            SetupDefaultConfigsAndConfigTable(versionInfo);

            Validate();
        }
    }
}