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 C2BLINEEDIT_H 8 #define C2BLINEEDIT_H 9 10 #include <QLineEdit> 11 12 13 class c2bLineEdit : public QLineEdit 14 { 15 16 Q_OBJECT 17 18 public: 19 explicit c2bLineEdit(QWidget* parentw = 0); 20 ~c2bLineEdit(); 21 22 protected: 23 virtual void contextMenuEvent(QContextMenuEvent* e); 24 }; 25 26 #endif