File indexing completed on 2024-06-16 04:46:58

0001 /*
0002     SPDX-FileCopyrightText: 2014-2015 Christian Dávid <christian-david@web.de>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef KBICEDIT_H
0007 #define KBICEDIT_H
0008 
0009 #include <QValidator>
0010 #include <KLineEdit>
0011 
0012 #include "kmm_base_widgets_export.h"
0013 
0014 class QAbstractItemDelegate;
0015 
0016 class KMM_BASE_WIDGETS_EXPORT KBicEdit : public KLineEdit
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit KBicEdit(QWidget* parent = 0);
0022     virtual ~KBicEdit();
0023 
0024 private:
0025     QAbstractItemDelegate* m_popupDelegate;
0026 };
0027 
0028 #endif // KBICEDIT_H