SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
crightclickenabler.cpp
Go to the documentation of this file.
1 /*
2  * crightclickenabler.cpp
3  *
4  * Created on: Mar 26, 2018
5  * Author: f4exb
6  */
7 
8 #include "crightclickenabler.h"
9 
10 CRightClickEnabler::CRightClickEnabler(QAbstractButton *button): QObject(button), _button(button) {
11  button->installEventFilter(this);
12 };
13 
CRightClickEnabler(QAbstractButton *button)