1 /*************************************************************************** 2 * Copyright (C) 2004-2021 by Pere Constans 3 * constans@molspaces.com 4 * cb2Bib version 2.0.1. Licensed under the GNU GPL version 3. 5 * See the LICENSE file that comes with this distribution. 6 ***************************************************************************/ 7 #ifndef C2BCOMBOBOX_H 8 #define C2BCOMBOBOX_H 9 10 #include <QComboBox> 11 12 13 class c2bComboBox : public QComboBox 14 { 15 16 Q_OBJECT 17 18 public: 19 explicit c2bComboBox(QWidget* parentw = 0); 20 ~c2bComboBox(); 21 22 23 protected: 24 virtual void contextMenuEvent(QContextMenuEvent* e); 25 }; 26 27 #endif