-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathKeyboardForm.h
60 lines (53 loc) · 1.49 KB
/
KeyboardForm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef KEYBOARDFROM_H
#define KEYBOARDFROM_H
#include <QDialog>
#include <QPushButton>
#include <QLineEdit>
#include <QLabel>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include "pinyininputmethod.h"
class KeyboardForm : public QDialog
{
Q_OBJECT
public:
explicit KeyboardForm(QWidget *parent = 0);
~KeyboardForm();
signals:
void sendKeyToFocusItem(const QString &keyText);
public slots:
void slotBtnClicked();
void btnClicked();
void slotHaiziBtnClicked();
void setText(QString str);
void shiftClicked();
void changeInputMode();
void changeSymbol();
void space();
void enter();
void backSpace();
void prevPage();
void nextPage();
private:
void mousePressEvent(QMouseEvent*e);
void mouseMoveEvent(QMouseEvent*e);
void mouseReleaseEvent(QMouseEvent*e);
void displayHanzi();
private:
QWidget* m_pyFrm, *m_btnFrm; // 拼音面板
QLineEdit *m_txtPinYin; // 真实拼音
QLabel *m_labPyText; // 分割拼音
QList<QPushButton*> m_listHanzi;
QList<QList<QPushButton*> >m_listCharsBtns; // A-Z Symbol
QList<QList<QPushButton*> >m_listBtns;
QVBoxLayout *m_mainLayout;
QPushButton *m_btnChange, *m_btnShift, *m_btnSymbol, *m_btnSpace; // 显示切换输入法
CPinyinInputMethod m_pinyinInput;
enum InputMode{ImEn, ImCn, ImNum};
InputMode m_inputMode;
bool m_isShiftInput;
int m_hanziPageCnt, m_curHanziPage;
bool m_isMousePress;
QPoint m_movePoint;
};
#endif // KEYBOARDFROM_H