Home
last modified time | relevance | path

Searched refs:KeyButton (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/keyboard/
H A Dkeybutton.cpp5 KeyButton::KeyButton(QWidget *parent) in KeyButton() function in KeyButton
17 void KeyButton::setValue(const QString &value) in setValue()
23 QString KeyButton::getValue() in getValue()
28 void KeyButton::setText(const QString &text) in setText()
33 void KeyButton::shift() in shift()
46 void KeyButton::caps() in caps()
62 void KeyButton::setKey(Qt::Key key) in setKey()
67 Qt::Key KeyButton::getKey() in getKey()
72 void KeyButton::paintEvent(QPaintEvent *e) in paintEvent()
101 void KeyButton::mousePressEvent(QMouseEvent *e) in mousePressEvent()
[all …]
H A Dkeybutton.h5 class KeyButton : public QPushButton
9 KeyButton(QWidget *parent=Q_NULLPTR);
H A Dkeyboard.h9 class KeyButton; variable
34 QList<KeyButton*> m_buttons;
H A Dkeyboard.cpp82 KeyButton *button = new KeyButton; in createKeys()
83 connect(button, &KeyButton::clicked, this, &Keyboard::handleKey); in createKeys()
271 KeyButton *button = dynamic_cast<KeyButton*>(this->sender()); in handleKey()