File indexing completed on 2024-05-05 05:37:32

0001 /*
0002     SPDX-FileCopyrightText: 2011 Lionel Chauvin <megabigbug@yahoo.fr>
0003     SPDX-FileCopyrightText: 2011, 2012 Cédric Bellegarde <gnumdk@gmail.com>
0004 
0005     SPDX-License-Identifier: MIT
0006 */
0007 
0008 #include "verticalmenu.h"
0009 
0010 #include <QCoreApplication>
0011 #include <QEvent>
0012 #include <QKeyEvent>
0013 #include <QMouseEvent>
0014 
0015 VerticalMenu::VerticalMenu(QWidget *parent)
0016     : QMenu(parent)
0017 {
0018 }
0019 
0020 VerticalMenu::~VerticalMenu()
0021 {
0022 }