You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
768 B
47 lines
768 B
#pragma once |
|
|
|
/* |
|
* SPDX-FileCopyrightText: 2003-2007 Craig Drummond <craig@kde.org> |
|
* SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "FcEngine.h" |
|
#include <QFrame> |
|
|
|
class QLabel; |
|
class QTimer; |
|
class QResizeEvent; |
|
class QEvent; |
|
|
|
namespace KFI |
|
{ |
|
class CFontPreview; |
|
|
|
class CCharTip : public QFrame |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
CCharTip(CFontPreview *parent); |
|
~CCharTip() override; |
|
|
|
void setItem(const CFcEngine::TChar &ch); |
|
|
|
private Q_SLOTS: |
|
|
|
void showTip(); |
|
void hideTip(); |
|
|
|
private: |
|
void reposition(); |
|
void resizeEvent(QResizeEvent *event) override; |
|
bool eventFilter(QObject *, QEvent *e) override; |
|
|
|
private: |
|
CFontPreview *m_parent; |
|
QLabel *m_label, *m_pixmapLabel; |
|
QTimer *m_timer; |
|
CFcEngine::TChar m_item; |
|
}; |
|
|
|
}
|
|
|