资源简介
QT平台的中文输入法,有智能拼音,笔画,手写识别,英文字母,支持全键盘和九宫格(T9)两种模式,界面做得不错,这个版本是windows 下的适合在windows 做测试时用。arm版本要找官方索取。
代码片段和文件信息
#include
#include “login.h“
QLogin::QLogin()
{
managerLabel = new QLabel(tr(“&Manager:“));
managerEdit = new QLineEditWithIM;
managerLabel->setBuddy(managerEdit);
passwdLabel = new QLabel(tr(“&Passwd:“));
passwdEdit = new QTextEditWithIM;
passwdLabel->setBuddy(passwdEdit);
okButton = new QPushButton(tr(“&Login“));
cancelButton = new QPushButton(“&Cancel“);
okButton->setDefault(true);
buttonBox = new QDialogButtonBox;
buttonBox->addButton(okButton QDialogButtonBox::ActionRole);
buttonBox->addButton(cancelButton QDialogButtonBox::AcceptRole);
connect(okButton SIGNAL(clicked()) this SLOT(login()));
connect(cancelButton SIGNAL(clicked()) this SLOT(cancel()));
QHBoxLayout *topLayout = new QHBoxLayout;
topLayout->addWidget(managerLabel);
topLayout->addWidget(managerEdit);
QHBoxLayout *midLayout = new QHBoxLayout;
midLayout->addWidget(passwdLabel);
midLayout->addWidget(passwdEdit);
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->addLayout(topLayout);
mainLayout->addLayout(midLayout);
mainLayout->addWidget(buttonBox);
mainLayout->setMargin(20);
setLayout(mainLayout);
managerEdit->setFocus();
QIcon icon;
icon.addFile(QString::fromUtf8(“:/new/main/picture/logo.png“) QSize() QIcon::Normal QIcon::Off);
setWindowIcon(icon);
setWindowtitle(“Login“);
}
QLogin::~QLogin()
{
//qDebug()<<“login close“;
delete managerLabel;
delete managerEdit;
delete passwdLabel;
delete passwdEdit;
delete okButton;
delete cancelButton;
}
/*
* Name : void login()
* Type : slot
* Func : login when authorize
* In : Null
* Out : Null
*/
void QLogin::login()
{
//qDebug()<text();
//qDebug()<text();
}
/*
* Name : void cancel()
* Type : slot
* Func : cancel login
* In : Null
* Out : Null
*/
void QLogin::cancel()
{
managerEdit->clear();
passwdEdit->clear();
close();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3983474 2016-09-06 10:30 windows_x86\libDWInputMethod.a
文件 406 2016-05-19 14:31 windows_x86\ManagerinfoPanel\dwinputmethod.h
文件 2001 2016-05-06 16:10 windows_x86\ManagerinfoPanel\login.cpp
文件 550 2016-05-06 16:10 windows_x86\ManagerinfoPanel\login.h
文件 181 2012-05-29 16:39 windows_x86\ManagerinfoPanel\main.cpp
文件 558 2016-05-04 09:59 windows_x86\ManagerinfoPanel\ManagerinfoPanel.pro
文件 17644 2016-09-06 11:49 windows_x86\ManagerinfoPanel\ManagerinfoPanel.pro.user
文件 2345 2016-08-03 08:34 windows_x86\ManagerinfoPanel\qlineeditwithim.cpp
文件 421 2016-05-09 07:54 windows_x86\ManagerinfoPanel\qlineeditwithim.h
..AD... 0 2016-09-06 11:49 windows_x86\ManagerinfoPanel
文件 437990 2016-09-06 11:48 windows_x86\环境.bmp
文件 152 2016-09-06 11:52 windows_x86\用前必读.txt
目录 0 2016-09-06 11:52 windows_x86
文件 108 2016-09-06 19:50 试用说明.txt
----------- --------- ---------- ----- ----
4445830 14
- 上一篇:北京市的房租出租的数据
- 下一篇:电赛题目2015
相关资源
- 使用ATLAS探测器在s = 13 $$ \\ sqrt {s} =
- 使用ATLAS检测器在s = 13 $$ \\ sqrt {s} =
- 使用ATLAS探测器在s = 8 $$ \\ sqrt {s} =
- 使用ATLAS探测器在s = 13 $$ \\ sqrt {s} =
- 类似QCD的新领域中的Theta
- 在s $$ \\ sqrt {s} $$ = 13 TeV的质子-质子碰
- pp→Wγγ和pp→Zγ&gam
- 从动态晶格QCD模拟得出迷人的四夸克
- 从晶格QCD计算中提取parton分布函数
- 使用晶格QCD在物理小子质量上的核子
- 从晶格QCD提取等量ππ相移
- QCD方法中的Pion和Kaon形状因子
- Nf = 2晶格QCD在物理点的拓扑磁化率和
- 风味动态域壁中lt;mathgt; mrow mn 2 / mn
- 晶格QCD上物理点附近的Ω二重子
- 各向异性晶格上的强耦合晶格QCD
- 来自晶格QCD的物理小子质量上的非扰
- 连接物理谐振幅度和晶格QCD
- 无扰动电流重新归一化时零反冲时B
- 满足PCAC关系的晶格QCD的轴向矢量形状
- 两味晶格QCD的核子广义形状因子
- 具有晶格QCD启发的形状因子的SU3非局
- 在物理点上对晶格QCD的μon异常磁矩
- QCD手性相变从非整数数量的调味剂
- 强耦合晶格QCD中手性相变在有限密度
- 在改进的软壁AdS / QCD模型中具有2 +
- 软壁AdS / QCD中的反常尺寸,手性相变
- 软壁AdS / QCD模型中有限温度手性相变
- 关于N f = 2 QCD中手性相变处U A1异常的
- 全息术中N f = 2 +1种风味的QCD的手性相
评论
共有 条评论