File indexing completed on 2023-05-30 10:45:24

0001 /*
0002     SPDX-FileCopyrightText: 2003-2009 Peter Hedlund <peter.hedlund@kdemail.net>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef DLGSPECCHAR_H
0007 #define DLGSPECCHAR_H
0008 
0009 #include <QDialog>
0010 
0011 class QWidget;
0012 class KCharSelect;
0013 
0014 /**
0015 @author Peter Hedlund
0016 */
0017 class DlgSpecChar : public QDialog
0018 {
0019 Q_OBJECT
0020 public:
0021   explicit DlgSpecChar(QWidget *parent, const QFont &font, const QChar &chr);
0022   void closeDialog();
0023 
0024 Q_SIGNALS:
0025   void insertChar(QChar);
0026 
0027 private Q_SLOTS:
0028   void slotUser1();
0029   void slotDoubleClicked();
0030 
0031 private:
0032   QChar chr();
0033 
0034   KCharSelect *m_charSelect;
0035 };
0036 
0037 #endif