Logo white

yanxiaolong / arm_show

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • arm_show
  • key32
  • softkeylineedit.h
  • jianpan
    4924de59
    yanxiaolong authored
    2021-03-20 20:10:23 +0800  
    Browse Code ยป
softkeylineedit.h 390 Bytes
Edit Raw Blame History
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
#ifndef SOFTKEYLINEEDIT_H
#define SOFTKEYLINEEDIT_H

#include <QLineEdit>
#include <QMouseEvent>
#include "numkeyboard.h"

class SoftKeyLineEdit : public QLineEdit
{
    Q_OBJECT
public:
    explicit SoftKeyLineEdit(QWidget *parent = 0);

protected:
    void mousePressEvent(QMouseEvent *e);

private:
    NumKeyboard *numkeyboard;

signals:

public slots:

};

#endif // SOFTKEYLINEEDIT_H