You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
472 B
C++
31 lines
472 B
C++
#pragma once
|
|
|
|
#include "iDlgBase.h"
|
|
#include "iGuiGridPty_global.h"
|
|
|
|
// 这是内部嵌套用的LineEdit
|
|
class X_GUI_GRIDPTY_EXPORT QLineEditEx : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QLineEditEx(QWidget *parent = 0);
|
|
~QLineEditEx();
|
|
|
|
void setActive(bool b);
|
|
bool isActive();
|
|
|
|
signals:
|
|
|
|
void sigActivated(bool);
|
|
|
|
protected:
|
|
|
|
virtual void focusInEvent(QFocusEvent *e);
|
|
virtual void focusOutEvent(QFocusEvent *e);
|
|
|
|
private:
|
|
|
|
bool m_bActive;
|
|
};
|