aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/jumplist/main.cpp
blob: 544718773ba85a8b515516e7184331b9bcc66bbe (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
/****************************************************************************
 **
 ** Copyright (C) 2016 Ivan Vizir <define-true-false@yandex.com>
 ** Contact: https://www.qt.io/licensing/
 **
 ** This file is part of the test suite of the Qt Toolkit.
 **
 ** $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$
 **
 ****************************************************************************/

#include "testwidget.h"

#include <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QDir>
#include <QDebug>
#include <QMimeDatabase>
#include <QSettings>
#include <QStatusBar>

#include <algorithm>
#include <iterator>

static bool associateFileType()
{
    const QString applicationBinary = QCoreApplication::applicationFilePath();
    QString exeFileName = applicationBinary;
    const int lastSlashPos = exeFileName.lastIndexOf(QLatin1Char('/'));
    exeFileName.remove(0, lastSlashPos + 1);
    QSettings regApplications("HKEY_CURRENT_USER\\Software\\Classes\\Applications\\" + exeFileName, QSettings::NativeFormat);
    regApplications.setValue("FriendlyAppName", QGuiApplication::applicationDisplayName());

    regApplications.beginGroup("SupportedTypes");
    QMimeDatabase mimeDatabase;
    const auto types = TestWidget::supportedMimeTypes();
    for (const QString &t : types) {
        const auto suffixes = mimeDatabase.mimeTypeForName(t).suffixes();
        for (const QString &s : suffixes)
            regApplications.setValue('.' + s, QString());
    }
    regApplications.endGroup();

    regApplications.beginGroup("shell");
    regApplications.beginGroup("open");
    regApplications.setValue("FriendlyAppName", QGuiApplication::applicationDisplayName());
    regApplications.beginGroup("command");
    regApplications.setValue(".", '"' + QDir::toNativeSeparators(applicationBinary) + "\" \"%1\"");
    regApplications.endGroup();
    regApplications.endGroup();
    regApplications.endGroup();
    return regApplications.status() == QSettings::NoError;
}

int main(int argc, char *argv[])
{
    QStringList allArgs; // Show all arguments including style.
    std::copy(argv + 1, argv + argc, std::back_inserter(allArgs));

    QApplication app(argc, argv);
    QGuiApplication::setApplicationDisplayName(QStringLiteral("QtWinExtras JumpList Test"));
    if (!associateFileType()) {
        qWarning() << "Unable to create registry entries.";
        return -1;
    }

    QCoreApplication::setOrganizationName("QtProject");
    QCoreApplication::setApplicationVersion(QT_VERSION_STR);
    QCommandLineParser parser;
    parser.setSingleDashWordOptionMode(QCommandLineParser::ParseAsLongOptions);
    parser.setApplicationDescription(QGuiApplication::applicationDisplayName());
    parser.addHelpOption();
    parser.addVersionOption();
    QCommandLineOption textOption("text", "Show some text");
    parser.addOption(textOption);
    QCommandLineOption fullScreenOption("fullscreen", "Show fullscreen");
    parser.addOption(fullScreenOption);
    QCommandLineOption idOption("id", "Jump list identifier", "id");
    parser.addOption(idOption);
    parser.addPositionalArgument("file", "The file to open.");
    parser.process(app);

    TestWidget w;

    if (parser.isSet(idOption))
        w.setId(parser.value(idOption));

    if (parser.isSet(fullScreenOption))
        w.showFullScreen();
    else
        w.show();

    if (parser.isSet(textOption))
        w.setText("Hello, world!");

    if (!parser.positionalArguments().isEmpty())
        w.showFile(parser.positionalArguments().first());

    if (allArgs.isEmpty())
        w.statusBar()->showMessage("Remember to run windeployqt");
    else
        w.statusBar()->showMessage("Arguments: " + allArgs.join(' '));

    return app.exec();
}