summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/code/src_gui_kernel_qaction.cpp
blob: 479c1882a25b4b2b5371ec985e566f9da6636651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QApplication>
#include <QAction>
#include <QIcon>

int main(int argc, char **argv)
{
    QIcon SomeIcon(":/path/to/icon.png");

    //! [0]
    QApplication app(argc, argv);
    app.setAttribute(Qt::AA_DontShowIconsInMenus);  // Icons are *no longer shown* in menus
    // ...
    QAction *myAction = new QAction();
    // ...
    myAction->setIcon(SomeIcon);
    myAction->setIconVisibleInMenu(true);   // Icon *will* be shown in menus for *this* action.
    //! [0]
}