summaryrefslogtreecommitdiffstats
path: root/src/android/jar/src/org/qtproject/qt/android/QtMenuInterface.java
blob: 556b9a57b940e477c8b995c2ece1d61b541df13f (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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
package org.qtproject.qt.android;

@UsedFromNativeCode
interface QtMenuInterface {
    void resetOptionsMenu();
    void openOptionsMenu();
    void closeContextMenu();
    void openContextMenu(final int x, final int y, final int w, final int h);
}