-------------------------------------CompleteLineEdit.h-------------------------------------

#ifndef COMPLETELINEEDIT_H

#define COMPLETELINEEDIT_H

#include <QtGui/QLineEdit>

#include <QStringList>

class QListView;

class QStringListModel;

class QModelIndex;

class CompleteLineEdit : public QLineEdit {

Q_OBJECT

public:

CompleteLineEdit(QStringList words, QWidget *parent = 0);

public slots:

void setCompleter(const QString &text); // 动态的显示完成列表

void completeText(const QModelIndex &index); // 点击完成列表中的项,使用此项自动完成输入的单词

protected:

virtual void keyPressEvent(QKeyEvent *e);

virtual void focusOutEvent(QFocusEvent *e);

private:

QStringList words; // 整个完成列表的单词

QListView *listView; // 完成列表

QStringListModel *model; // 完成列表的model

};

#endif // COMPLETELINEEDIT_H

 
-------------------------------------CompleteLineEdit.cpp-------------------------------------

#include "CompleteLineEdit.h"

#include <QKeyEvent>

#include <QtGui/QListView>

#include <QtGui/QStringListModel>

#include <QDebug>

CompleteLineEdit::CompleteLineEdit(QStringList words, QWidget *parent)

: QLineEdit(parent), words(words) {

listView = new QListView(this);

model = new QStringListModel(this);

listView->setWindowFlags(Qt::ToolTip);

connect(this, SIGNAL(textChanged(const QString &)), this, SLOT(setCompleter(const QString &)));

connect(listView, SIGNAL(clicked(const QModelIndex &)), this, SLOT(completeText(const QModelIndex &)));

}

void CompleteLineEdit::focusOutEvent(QFocusEvent *e) {

//listView->hide();

}

void CompleteLineEdit::keyPressEvent(QKeyEvent *e) {

if (!listView->isHidden()) {

int key = e->key();

int count = listView->model()->rowCount();

QModelIndex currentIndex = listView->currentIndex();

if (Qt::Key_Down == key) {

// 按向下方向键时,移动光标选中下一个完成列表中的项

int row = currentIndex.row() + 1;

if (row >= count) {

row = 0;

}

QModelIndex index = listView->model()->index(row, 0);

listView->setCurrentIndex(index);

} else if (Qt::Key_Up == key) {

// 按向下方向键时,移动光标选中上一个完成列表中的项

int row = currentIndex.row() - 1;

if (row < 0) {

row = count - 1;

}

QModelIndex index = listView->model()->index(row, 0);

listView->setCurrentIndex(index);

} else if (Qt::Key_Escape == key) {

// 按下Esc键时,隐藏完成列表

listView->hide();

} else if (Qt::Key_Enter == key || Qt::Key_Return == key) {

// 按下回车键时,使用完成列表中选中的项,并隐藏完成列表

if (currentIndex.isValid()) {

QString text = listView->currentIndex().data().toString();

setText(text);

}

listView->hide();

} else {

// 其他情况,隐藏完成列表,并使用QLineEdit的键盘按下事件

listView->hide();

QLineEdit::keyPressEvent(e);

}

} else {

QLineEdit::keyPressEvent(e);

}

}

void CompleteLineEdit::setCompleter(const QString &text) {

if (text.isEmpty()) {

listView->hide();

return;

}

if ((text.length() > 1) && (!listView->isHidden())) {

return;

}

// 如果完整的完成列表中的某个单词包含输入的文本,则加入要显示的完成列表串中

QStringList sl;

foreach(QString word, words) {

if (word.contains(text)) {

sl << word;

}

}

model->setStringList(sl);

listView->setModel(model);

if (model->rowCount() == 0) {

return;

}

// Position the text edit

listView->setMinimumWidth(width());

listView->setMaximumWidth(width());

QPoint p(0, height());

int x = mapToGlobal(p).x();

int y = mapToGlobal(p).y() + 1;

listView->move(x, y);

listView->show();

}

void CompleteLineEdit::completeText(const QModelIndex &index) {

QString text = index.data().toString();

setText(text);

listView->hide();

}

 
-------------------------------------main.cpp----------------------------------

#include <QtGui/QApplication>

#include "CompleteLineEdit.h"

#include <QtGui>

#include <QCompleter>

#include <QStringList>

int main(int argc, char *argv[]) {

QApplication a(argc, argv);

QStringList sl = QStringList() << "Biao" << "Bin" << "Huang" << "Hua" << "Hello" << "BinBin" << "Hallo";

QWidget widgetw;

CompleteLineEdit * edit= new CompleteLineEdit(sl);

QPushButton *button = new QPushButton("Button");

QHBoxLayout *layout = new QHBoxLayout();

layout->addWidget(edit);

layout->addWidget(button);

widgetw.setLayout(layout);

widgetw.show();

CompleteLineEdit e(sl);

e.show();

return a.exec();

}

http://blog.csdn.net/hufengvip/article/details/6555737

QLineEdit 自动完成(使用setCompleter,内含一个ListView)的更多相关文章

  1. Java-集合=第五题 (Map)设计Account 对象如下: private long id; private double balance; private String password; 要求完善设计,使得该Account 对象能够自动分配id。 给定一个List 如下: List list = new ArrayList(); list.add(new A

    第五题 (Map)设计Account 对象如下: private long id; private double balance; private String password; 要求完善设计,使得 ...

  2. Android一个ListView列表之中插入两种不同的数据

    http://www.cnblogs.com/roucheng/ Android一个ListView列表之中插入两种不同的数据 代码如下: public class ViewHolder{ Butto ...

  3. 一个ListView布局的不断演化

    刚出来工作,就负责一个APP的某块功能的编写,该功能就是类似微博那样的界面.微博界面的编写实际上是非常复杂的,虽然它只是一个ListView,但要想让这个ListView滑得动,是的,在一些配置低的手 ...

  4. Android由一个activity 间隔5秒自动跳转到另外一个activity

    Android由一个activity 间隔5秒自动跳转到另外一个activity 2013年10月10日18:03:42 //一.写一个定时器 5秒后开启        final Intent lo ...

  5. 安卓activity之间值共享解决办法,tabhost之间共享父类值,字符串类型的转换,获取每一个listview的item

    1.tabhost父类值共享的解决办法 dianzhanliebiao.java是传值页面,zhuyemian.java放的是tabhost,dianzhangaikuang.java是tabhost ...

  6. android 开发 实现一个ListView套嵌GirdView的滚动布局

    效果图 实现思维: 首先要处理管理好需要导入的数据,我们这里创建class来处理这些数据并且便于管理它们. 创建一个主activity的布局,里面需要一个ListView控件. 创建一个class继承 ...

  7. Android 关于在ScrollView中加上一个ListView,ListView内容显示不完全(总是显示第一项)的问题的两种简单的解决方案

    是这样的哈: 有这样一个需求: 1.显示一个界面,界面上有一个列表(ListView),列表上面有一个可以滚动的海报. 2.要求在ListView滚动的过程中,ListView上面的海报也可以跟着Li ...

  8. 自定义一个ListView实现聊天界面

    摘要 ListView可以称得上Android中最常用也最难用的控件了,几乎所有的应用程序都会用到它.由于手机屏幕空间都比较有限,能够一次性在屏幕上显示的内容并不多,当我们的程序中有大量的数据需要展示 ...

  9. 在ScrollView添加一个ListView造成的滚动问题的简单解决办法()

    正常来说,在ScrollView添加一个ListView后在真机上只会显示ListView的一行多一点,我也不理解为什么会这样,后来我把ListView的layout_height改成400dip,而 ...

随机推荐

  1. HDU 4836 The Query on the Tree lca || 欧拉序列 || 动态树

    lca的做法还是非常明显的.简单粗暴, 只是不是正解.假设树是长链就会跪,直接变成O(n).. 最后跑的也挺快,出题人还是挺阳光的.. 动态树的解法也是听别人说能ac的.预计就是放在splay上剖分一 ...

  2. 时间运算函数 CATT_ADD_TO_TIME

  3. asp.net2.0安全性(4)--Login系列控件--转载来自车老师

    前面主要说了与安全相关的一系列的类,现在我们使用这些类就可以做出我们自己的安全系统了.其实微软的目的远不至于此,下面我们就来看一下微软为我们提供的Login系列控件. Login系列控件是微软为了简化 ...

  4. EasyUI - Datatable转Json and Json转Datatable

    using System; using System.Data; using System.Linq; using System.Collections; using System.Collectio ...

  5. QNX 线程 调度策略 优先级 时钟频率 同步

    /* * barrier1.c */ #include <stdio.h>#include <unistd.h>#include <stdlib.h>#includ ...

  6. jdbcType与javaType的对应关系

    java.sql.Types 值 Java 类型 IBM DB2 Oracle Sybase SQL Informix IBM Content Manager BIGINT java.lang.lon ...

  7. Last_IO_Errno: 1236 Last_IO_Error: Got fatal error 1236 from master when reading data from binary lo

    mysql> show slave status\G *************************** 1. row ***************************         ...

  8. VHDL TestBench 测试终止时自动结束仿真——assert方法

    可在结束仿真位置添加如下代码: assert false report "Simulation is finished!" severity Failure; 则在Modelsim ...

  9. hadoop学习;hadoop伪分布搭建

    先前已经做了准备工作安装jdk什么的,以下開始ssh免password登陆.这里我们用的是PieTTY工具,当然你也能够直接在linux下直接操作 ssh(secure shell),运行命令 ssh ...

  10. 【环境配置】配置sdk

    1. 安装和配置 (1) 下载sdk 官方下载地址http://developer.android.com/sdk/index.html 这里以android-sdk_r12-linux_x86.tg ...